Advertisement
jordan83221

Assembly

Oct 2nd, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .model small
  2. org 100h
  3. .code
  4. main proc near
  5.     mov ah,09h
  6.     mov dx,offset message
  7.     int 21h
  8.     mov ah,4ch
  9.     int 21h
  10. endp
  11. message db "Hello World $"
  12. end main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement