views:

129

answers:

1

How can we calculate the physical memory address generated by the following segment: offset pairs (both are hexadecimal values). a. 0010:0200 b. 0100:DFAD c. DADD:6727

Please explain in detail

+1  A: 
address = segment << 4 + offset

See here for details.

Marcelo Cantos