Advertisement
PonaFly

Untitled

Mar 9th, 2017
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .486
  2. .model flat, stdcall
  3. INCLUDE stdlib.inc
  4. INCLUDELIB msvcrt.lib
  5.  
  6. .Data
  7. a dd ?
  8. t1 db ?
  9. t2 db ?
  10. e1 dd 2
  11. e2 dd 3  
  12. .CODE
  13. main:
  14. mov eax, a
  15. cdq
  16. idiv e1
  17. mov t1,dl
  18. mov eax,a
  19. cdq
  20. idiv e2
  21. mov t2,dl
  22. mov al,t1
  23. mov ah,t2
  24.   call exit
  25. END main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement