Tagged Questions

24
votes
8answers
1k views

System where 1 byte != 8 bit?

All the time I read sentences like don't rely on 1 byte being 8 bit in size use CHAR_BIT instead of 8 as a constant to convert between bits and bytes et cetera. What real life systems are ...
8
votes
5answers
2k views

How cache memory works?

Today when I was in computer organization class, teacher talked about something interesting to me. When it comes to talk about Why cache memory works, he said that: for (i=0; i<M; i++) for(j=0; ...
6
votes
6answers
245 views

C volatile variables and Cache Memory

Cache is controlled by cache hardware transparently to processor, so if we use volatile variables in C program, how is it guaranteed that my program reads data each time from the actual memory address ...
6
votes
7answers
623 views

What is the relationship between Turing Machine & Modern Computer?

Possible Duplicate: What is the relationship between Turing Machine & Modern Computer ? I heard a lot that modern computers are based on Turing machine. I just cannot build a bridge ...
5
votes
4answers
320 views

Why do 64 bit systems have only a 48 bit address space?

I an book i read the following: The 32-bit processors have 2^32 possible addresses, while curent 64-bit processors have a 48-bit address space My expectation was that if its a 64-bit process the ...
5
votes
5answers
2k views

maximum memory which malloc can allocate!

I was trying to figure out how much memory I can malloc to maximum extent on my machine (1 Gb RAM 160 Gb HD Windows platform). I read that maximum memory malloc can allocate is limited to physical ...
2
votes
1answer
485 views

CPU Cache implementation in C or C++ or SystemC

I need a very basic C or C++ source code of CPU cache. Google didnt help me find a proper one. The implementation only needs to provide the most fundamental functionality of a cache. For ex, in C++: ...
1
vote
1answer
50 views

Good place to learn how window servers/screen rendering works? [closed]

What is a good place to learn the 'rendering' stack for the window server? More specifically, what a frame buffer is, what role the VRAM plays, how video memory works, how scrolling works, etc. ...
1
vote
3answers
77 views

Question about Limits on Addressability?

I am reading some C text at the address: https://cs.senecac.on.ca/~lczegel/BTP100/pages/content/compu.html In the section: Addressible Memory they say that "The maximum size of addressable primary ...
1
vote
1answer
228 views

What is the difference between Registers and Temporary Registers?

Valgrind uses an intermediate code representation to let us instrument binary code so that we don't have to deal with programming language level constructs. In the process of converting binary code ...
0
votes
6answers
145 views

Regarding number representation

How do I find the representation of a Number for the system I am on?
-1
votes
2answers
225 views

How to compute the word size of your computer in C? [closed]

Possible Duplicate: Determine word size of my processor It is One Interview question today. But I didn't know ... I think the interviewer meaned the word size of cpu. I find an answer ...
-2
votes
6answers
210 views

The difference between 0 and 128 [closed]

An signed integer (using 8 bits) --- Range==> -128 to 127. And if we consider the 2's Complement representation: 10000000 =128/(-0) [ Since its 2's Complement is 10000000 ] So in a way its a ...