.model small
.stack 100
.data
.code
mov ah,00h
mov al,0e3h
mov dx,00h
int 14h
back: nop
l1: mov ah,03h
mov dx,00h
int 14h
and ah,01h
cmp ah,01h
jne l1
mov ah,02h
mov dx,00h
int 21h
mov dl,al
mov ah,02h
int 21h
jmb back
mov ah,4ch
int 21h
end
這是一個pc到pc的通信接收器程序。我想知道 爲什麼它使用mov dx,00h
命令和mov al,0e3h
是什麼意思?8086使用TASM編程:pc到pc通信
嘿感謝了很多 – Komal 2010-05-05 03:16:31