Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. .686
  2. .model flat
  3. extern _ExitProcess@4 : PROC
  4. public _main
  5. .code
  6.  
  7. sum PROC
  8. push ebp
  9. mov ebp, esp
  10.  
  11. mov eax, [ebp+16]
  12.  
  13. pop ebp
  14. ret
  15. sum ENDP
  16.  
  17. _main:
  18.  
  19. push dword PTR 17
  20. push dword PTR -5
  21. push dword PTR 7
  22. call sum
  23.  
  24. call _ExitProcess@4
  25. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement