Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- org 100h
- start:
- mov ah,09h
- mov cx,5
- new:
- mov dx, string
- int 21h
- mov dx, newline
- int 21h
- loop new
- mov ax,4c00h
- int 21h
- data:
- string: db "hello $"
- newline: db 0dh,0ah,'$'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement