Muhammad Maqsoodur Rehman
Muhammad Maqsoodur Rehman

Reputation: 34267

What is procedure to calculate physical memory address?

How can we calculate the physical memory address generated by the following segment:offset pairs (both are hexadecimal values).

  1. 0010:0200
  2. 0100:DFAD
  3. DADD:6727

Upvotes: 0

Views: 2884

Answers (1)

Marcelo Cantos
Marcelo Cantos

Reputation: 185892

address = segment << 4 + offset

See here for details.

Upvotes: 1

Related Questions