Advertisement
Guest User

Untitled

a guest
Jan 13th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. org 0x100
  2. mov ax, 13h
  3. int 10h
  4. push 0a000h
  5. pop es
  6. mov bx, 140h
  7. mov cx, 0
  8. mov di, 0
  9. loop1:
  10. inc cx
  11. mov ax, cx
  12. xor dx, dx
  13. div bx
  14. xor ax, dx
  15. stosb
  16. cmp cx, 64000
  17. jne loop1
  18. mov cx, 0
  19. jmp loop1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement