第 10 章:CALL 和 RET 指令
检测点 10.1
assume cs:code
stack segment
db 16 dup (0)
stack ends
code segment
start:
mov ax,stack
mov ss,ax
mov sp,16
mov ax,1000h ; CS,先入后出
push ax
mov ax,0000h ; IP
push ax
retf
code ends
end start检测点 10.2
检测点 10.3
检测点 10.4
检测点 10.5
参考链接
实验 10 编写子程序
一、显示字符串
参考链接
Last updated