
.data
MsgBoxCaption db 'Stop!',0
MsgBoxText db 'Because this is far too geeky',0
.code
start:
invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK
invoke ExitProcess, NULL
end start
( ,
Mon 8 Sep 2003, 14:30,
archived)
MsgBoxCaption db 'Stop!',0
MsgBoxText db 'Because this is far too geeky',0
.code
start:
invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK
invoke ExitProcess, NULL
end start