Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- org 100h
- .stack 100h
- .data
- .code
- proc main
- mov dx, @data
- mov ds, dx
- mov ax, 0
- int 33h
- cmp ax, 0
- je notfound
- L1:
- mov AX, 3
- int 33h
- jmp L1
- mov ah, 4ch
- int 21h
- endp main
- end main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement