可以说是我第一次写的汇编程序了

来源:互联网 发布:电玩城源码出售 编辑:程序博客网 时间:2024/04/30 08:01

code segment
 assume cs:code
 ;.model tiny
start:
 mov ax,13h
 int 10h
 call testt
 jmp short start
testt:
 in al,60h
 cmp al,1
 je exit
 ret
exit:
 mov ax,3
 int 10h
 mov ah,4ch
 int 21h
 ret
code ends
end start