我开始用餐厅学习,但不幸的是,在我下面编纂法典之后,我发现错误:“申请停止工作”,我使用Win7 64bit。 没有人想为什么不工作?
format PE Console 4.0
include win32a.inc
push MB_OK
push _tresc
push _tytul
push 0
call [MessageBoxA]
push 0
call [ExitProcess]
mov eax,0
ret
_tytul db "Tytul",0
_tresc db "Hello world :)",0
data import
library user32, USER32.DLL
library kernel32, KERNEL32.DLL
import user32,
MessageBoxA, MessageBoxA
import kernel32,
ExitProcess, ExitProcess
end data