Advertisement
jordan83221

Assembly.8086

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