Advertisement
StefanBashkir

Untitled

Feb 8th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .486p
  2.  
  3. .model  flat,STDCALL
  4. include  win32.inc
  5.  
  6. extrn            MessageBoxA:PROC
  7. extrn            ExitProcess:PROC
  8.  
  9. .data
  10.  
  11. HelloWorld db "Hello, world!",0
  12. msgTitle db "Hello world program",0
  13.  
  14. .code
  15. Start:
  16.          push    offset msgTitle
  17.          push    offset HelloWorld
  18.          push    0
  19.          call    MessageBoxA
  20.  
  21.          push 0
  22.          call ExitProcess
  23. ends
  24. end Start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement