mov sp,1000h
mov ax,4321h
mov bx,5678h
push ax
call subp
pop cx
mov ax,4c00h
int 21h
subp proc
pop dx
pop cx
sub cx,bx
push cx
push dx
ret
程序代码如上,为什么在子程序中先出栈在进展啊?怎么完全乱套了啊?