Advertisement
rsy56640

ex

Oct 12th, 2018
3,176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MPASM 0.19 KB | None | 0 0
  1. .386
  2. .model flat, stdcall
  3. .stack 4096
  4. ExitProcess PROTO, dwExitCode: DWORD
  5.  
  6. .data
  7.  
  8. .code
  9.  
  10. main PROC
  11.     mov eax, 3
  12.     mov ebx, 8
  13.     add eax, ebx
  14.  
  15.     INVOKE ExitProcess, 0
  16. main ENDP
  17. END main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement