标签:style color 使用 strong set 表
Real Mode
在 real mode 中,memory 的使用被限制在 1 MByte(220 bytes) 內,可用的 address 範圍為 0x00000 ~ 0xFFFFF。
由 memory address 的可用範圍可知,存取需要 20 bits 的長度,但在 8086 的 CPU 架構中僅有 16-bit register,因此必須使用兩個 16 bits 值的組合來表示一個 memory address。
其中前面的 16 bits 稱為 selector,必須存於 segment register 中,而後面的 16 bits 稱為 offset,其中實際 memory address 的計算方式如下:
16 * selector + offset (即為 selector 補 0 到後方再與 offset 相加)
而 real mode 有幾個問題:
由於種種問題,造成在 real mode 中設計程式是一件非常困難的事情。
[fw]Real Mode addressing,布布扣,bubuko.com
标签:style color 使用 strong set 表
原文地址:http://www.cnblogs.com/bittorrent/p/3791814.html