I have a question regarding how memory is addressed and interfaced to the processor. Considering a 32 bit data bus, and if one need to access (a byte) data on location 0x3, what will be the address sent on the address bus ? Will it be 0x3 or will it be 0x0 and then processor picks from the lines 16-23 ? if it is not 0x0 and is 0x3 then what all will be there on rest of the data bus and on what data one need to access all 4 bytes in one go(say an int) ?

link|improve this question
1  
Program and memory addresses usually do not correlate (virtual vs. physical addresses), and memory can usually only be accessed in chunks (cache lines, often something around 64 bytes). – Damon Apr 12 '11 at 22:55
The answer depends on the processor and, more importantly, the OS running. Virtual memory and other addressing complications will come in to play. – Tony Apr 12 '11 at 22:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.