-1
votes
3answers
94 views
computer architecture [closed]
Possible Duplicate:
What are your favorite CS video lectures?
I am studying for an masters in information technology and I am required to take a course in computer architecture since i have …
3
votes
1answer
63 views
What are some examples of non-von Neumann architectures?
If I understand correctly modern computers are modeled after the von Neumann architecture. I have sometimes seen reference to alternatives, but haven't really seen any very good descriptions of how …
3
votes
5answers
178 views
Is this a mistake in my Computer Architecture book?
I'm working on my HW for computer architecture and I came across the following problem:
A = 247
B = 237
1) Assume A and B are signed 8-bit integers stored in two's complement format. …
4
votes
4answers
151 views
Understanding word alignment
I understand what it means to access memory such that it is aligned but I don’t understand why this is necessary. For instance, why can I access a single byte from an address 0x…1 but I cannot access …
3
votes
7answers
256 views
How are bits stored in memory? (In chunks? Can there be bits of multiple sizes stored toghether?)
I used to think that each memory location contains 8, 16, 32 or 64 bits. So 0101 would be stored in an 8 bit machine as 00000101 (sign extended if it was negative). This was all fine and dandy until I …
2
votes
0answers
139 views
What is the maximum amount of ram a 64bit machine can theoretically address? [closed]
I'm reading through my computer architecture book and I see that in an x86, 32bit CPU, the program counter is 32 bit.
So, the number of bytes it can address is 2^32 bytes, or 4GB. So it makes sense …
2
votes
4answers
479 views
Are there any online videos lectures about “computer organization and architecture”?
Can anyone suggest me some resources and lectures about computer architecture?
1
vote
4answers
155 views
L1/2 cache problem
could L1/L2 cache line each cache multiple copies of the main memory data word?
6
votes
5answers
688 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; …
2
votes
8answers
2k views
Where are variables in C++ stored?
Where are variables in C++ stored?
Inside the RAM or the processor's cache?
