编写以下代码(汇编)

时间:2013-12-28 08:05:25

标签: assembly

这个问题取自书籍汇编语言编程 将堆栈顶部放入AX,而不更改堆栈内容。 如果不使用push和pop,怎么可能?

1 个答案:

答案 0 :(得分:-1)

听起来像英特尔组装。

mov ax, sp; moves the address of the top of the stack into ax.
mov ax, [sp]; moves the contents of the top of the stack into ax.