![]() |
#2
菜鸟上路2007-04-18 17:23
|
以下是一个实现单个字符的键盘输入与显示输出的程序:
code segment
assume cs:code
start :mov ah,1
int 21h
mov dl,al
add dl,1 (为什么要用这一句啊?)
mov ah,2
int 21h
mov ah,4ch
int 21h
code ends
end start