Guest User

Untitled

a guest
Jun 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; function to print out some text
  2. ; in: si - address of the message
  3. print  
  4.     mov ah, 0Eh     ; TTY output command
  5.     mov bx, 0007h
  6. .l1 lodsb
  7.     cmp al, 0
  8.     je  .end
  9.     int 10h
  10.     jmp .l1
  11. .end    ret
Add Comment
Please, Sign In to add comment