Post-Intel 80386 上的递增和预递减寻址模式
Post-increment and Pre-decrement addressing modes on Intel 80386
我知道这些模式在其他处理器上是如何工作的,我不明白的是为什么 80386 不需要 post-递增和预递减寻址模式?
此外,这些寻址模式与 push
和 pop
指令之间的关系是什么?
why the 80386 doesn´t need the post-increment and pre-decrement
addressing modes?
只要您有 ADD
/SUB
指令,您就永远 不需要 post-increment 和 pre-decrement 寻址模式。它们只是方便说明。
what´s the relation between this addressing modes and the push and pop
instructions?
PUSH
是 pre-decrement 保存,POP
是 post-increment 加载。
我知道这些模式在其他处理器上是如何工作的,我不明白的是为什么 80386 不需要 post-递增和预递减寻址模式?
此外,这些寻址模式与 push
和 pop
指令之间的关系是什么?
why the 80386 doesn´t need the post-increment and pre-decrement addressing modes?
只要您有 ADD
/SUB
指令,您就永远 不需要 post-increment 和 pre-decrement 寻址模式。它们只是方便说明。
what´s the relation between this addressing modes and the push and pop instructions?
PUSH
是 pre-decrement 保存,POP
是 post-increment 加载。