Reputation: 34267
How can we calculate the physical memory address generated by the following segment:offset pairs (both are hexadecimal values).
0010:0200
0100:DFAD
DADD:6727
Upvotes: 0
Views: 2884
Reputation: 185892
address = segment << 4 + offset
See here for details.
Upvotes: 1