Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. extern __imp__MessageBoxA@16
  2. extern __imp__ExitProcess@4
  3. %assign MB_ICONINFORMATION 10h
  4.  
  5.     section .text
  6.     global _start
  7. _start:
  8.     push MB_ICONINFORMATION
  9.     push h_t
  10.     push h_m
  11.     push 0
  12.     call [__imp__MessageBoxA@16]
  13.     push 0
  14.     call [__imp__ExitProcess@4]
  15.  
  16.     section .data
  17. h_t db "first prog",0
  18. h_m db "hello world", 0
  19.  
  20.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement