标签: assembly
这个问题取自书籍汇编语言编程 将堆栈顶部放入AX,而不更改堆栈内容。 如果不使用push和pop,怎么可能?
答案 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.