Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. .model tiny;
  2. .code;
  3. org 100h;
  4. start:
  5. mov ah, 9;
  6. mov dx, offset message;
  7. int 21h;
  8. ret;
  9. message db "Hello World!", 0Dh, 0Ah, '$';
  10. end start;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement