Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. format PE console
  2. entry start
  3.  
  4. include 'win32a.inc'
  5.  
  6. ; ===============================================
  7. section '.text' code readable executable
  8.  
  9. start:
  10. call read_hex
  11. neg eax
  12. dec eax
  13. call print_eax
  14.  
  15. exit_program:
  16. ; Exit the process:
  17. push 0
  18. call [ExitProcess]
  19.  
  20. include 'training.inc'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement