ASM “Hello World” | 雨律在线
.386
.model flat,stdcall
option casemap:none
include
windows.inc
include kernel32.inc
include user32.inc
includelib kernel32.lib
includelib user32.lib

.data
szMsg db 'Hello,World!',0
szTil db 'ASM Hello World.',0
.code

start:
invoke
MessageBox, NULL, offset szMsg, offset szTil, MB_OK or MB_ICONINFORMATION
call ExitProcess
end start


 
目前有0条回应
Comment
Trackback
你目前的身份是游客,请输入昵称和电邮!