Hello world!
.586
.model flat,stdcall
option casemap:none
include \masm32\include\kernel32.inc
include \masm32\include\user32.inc
include \masm32\include\windows.incincludelib \masm32\lib\kernel32.lib
includelib \masm32\lib\user32.lib.data
sample db “hello world!”,0.code
start:
xor eax,eax
push eax
push offset sample
push offset sample
push eax
call MessageBoxA
ret
end start
aspirine said,
December 6, 2007 at 12:38 pm
Hello dude , i am just wandering about this code , what it’s doing.
and how do you transform it into a executable file?
Thanks a lot for your help.
aspirine
fakedminded said,
December 6, 2007 at 8:46 pm
http://www.masm32.com/ –this will help you