Advertisement
Guest User

Untitled

a guest
Jul 29th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. OPTION DOTNAME
  2. include temphls.inc
  3. include win64.inc
  4. include kernel32.inc
  5. include user32.inc
  6. includelib kernel32.lib
  7. includelib user32.lib
  8. .data
  9. MsgCaption      db "Iczelion's tutorial #2",0
  10. MsgBoxText      db "Win64 Assembly with MASM is Great!",0
  11. .code
  12. start:
  13.     invoke MessageBox,0,&MsgBoxText,&MsgCaption,0
  14.     invoke ExitProcess,0
  15. end start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement