Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ESC_ equ 1Bh
- org 100h
- start:
- mov ah,08h
- int 21h
- cmp al,ESC_
- je exit
- cmp al,'C'
- jb start
- cmp al,'R'
- ja start
- mov ah,02h
- mov dl,al
- int 21h
- jmp start
- exit:
- ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement