SquirrelInBox

Untitled

Apr 25th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. .model tiny
  2. .code
  3. org 100h
  4.  
  5. @main:
  6. xor bl, bl
  7. @start:
  8.  
  9. mov ah, 02h
  10. mov dl, bl
  11. int 21h
  12.  
  13. inc bx
  14.  
  15. mov cx, bx
  16. xor bh, bh
  17. mov ax, bx
  18. mov bx, 15
  19. div bl
  20. mov bx, cx
  21.  
  22. cmp ah, 0
  23. ; test bl, 15
  24. jne @start
  25.  
  26. mov dl, 0dh
  27. int 21h
  28. mov dl, 0ah
  29. int 21h
  30.  
  31. test bl, bl
  32. jne @start
  33.  
  34. ret
  35. end @main
Add Comment
Please, Sign In to add comment