求助:王爽汇编中关于堆栈的问题
assume cs:code,ss:stackstack segment
db 16 dup (20h)
stack ends
code segment
start:mov ax,stack
mov ss,ax
mov sp,0010h
mov ax,'ab'
push ax
pop bx
mov ax,c00h
int 21h
code ends
end start
代码是这样,用debug单步调试时,对堆栈中的数据进行PUSH和POP操作后,堆栈中的数据就消失了。按说堆栈中的数据应该只是被 ‘复制’ 而已吧 求高手帮我看看吧。郁闷了好多天了也想不明白