看看标准解释:
The contents of the internal RAM location addressed by the Stack Pointer is read, and the Stack Pointer is decremented by one. The value read is then transferred to the directly addressed byte indicated. No flags are affected.
------------------
POP direct 的内部操作应该是:
(temp) ← ((SP))
(SP) ← (SP) - 1
(direct) ← (temp)
看看标准解释:
The contents of the internal RAM location addressed by the Stack Pointer is read, and the Stack Pointer is decremented by one. The value read is then transferred to the directly address ...
john_lee 发表于 2012-10-22 15:29