Advertisement
PonaFly

Untitled

Mar 9th, 2017
240
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. b dd ?
  9. d dd ?
  10.  
  11. .CODE
  12. main:
  13. mov eax,a
  14. cmp eax, b
  15. jle l2
  16.  
  17.  
  18. l1:
  19. mov d,eax
  20. jmp exxit
  21.  
  22. l2:
  23. mov eax,b
  24. mov d,eax
  25.  
  26. exxit:
  27. call exit
  28. END main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement