Me and my friend were brainstorming about a question concerning physical memory addressing in real mode and we couldn't wrap our heads around it. Here goes.

In real mode 16 is multiplied to the segment selector register and added to the offset register to get the 20-bit physical address. This consequently leads to the possibility of overlapping segments.

E.G. "Segment Selector -> 0040 & Offset -> 0010" = "Segment Selector -> 0030 & offset -> 0110"

It is our understanding that the segment selector is shifted by 4 bits before being added to the offset. So in order to avoid this segmentation why didn't they just shift the segment selector by 6 (multiply it by 64) before adding it to the offset. In our view this would have eliminated the prospect of memory overlapping.

Does it have to do with any hardware limitations they faced during that time or is it simply a design decision.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

It's due to the design constraints. They had a 20-bit address bus, the simplest thing to do was simply to have the segment register select the paragraph, then add the offset to it (and for the parts that exceed the 20-bit address bus, it wraps around into the bottom of memory).

link|improve this answer
feedback

Shifting by 4 gave you an address space of a whole megabyte. Wow!

The design was done at a time when the 8-bit systems were configured with 64 kB, for those rich enough to buy that much memory. And with a big enough box to fit all those memory boards.

Here's what 16 kB looked like: http://www.s100computers.com/Hardware%20Folder/CCS/16K%20RAM/16K%20RAM.htm

If you were to install 4 MB, you would first have to rent another room to store the memory boards!

link|improve this answer
Nowadays you can buy a whole computer and have money left over with the same amount of money my first 4MB configuration of RAM cost! – Brian Knoblauch Apr 15 '11 at 13:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.