Guest User

Untitled

a guest
Jun 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .386
  2. .model flat,stdcall
  3. option casemap:none
  4.  
  5. include \masm32\include\windows.inc
  6. include \masm32\include\kernel32.inc
  7. include \masm32\include\user32.inc
  8.  
  9. includelib \masm32\lib\kernel32.lib
  10. includelib \masm32\lib\user32.lib
  11.  
  12. .data
  13.  
  14. Title_msg db " Troooll ",0
  15. Msg db " Faaaccceee! :) ",0
  16.  
  17. .code
  18. start:
  19. starts:
  20. invoke MessageBox,0,addr Msg,addr Title_msg,MB_OK
  21. loop starts
  22. invoke ExitProcess,0
  23.  
  24. end start
Add Comment
Please, Sign In to add comment