Advertisement
Guest User

MASM Project Template

a guest
Feb 17th, 2022
4,025
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ; Program Template (Template.asm)
  2. ; Program Description:
  3. ; Author:
  4. ; Creation Date:
  5. ; Revisions:
  6. ; Date: Modified by:
  7.  
  8. .386
  9. .model flat,stdcall
  10. .stack 4096
  11. ExitProcess PROTO, dwExitCode:DWORD
  12.  
  13. .data
  14. ; declare variables here
  15.  
  16. .code
  17. main PROC
  18. ; write your code here
  19.  
  20. INVOKE ExitProcess,0
  21. main ENDP
  22. ; (insert additional procedures here)
  23. END main
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement