|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
//不知道这个是是意思,请各位老大解析
Assembling: heello.asm
heello.asm(1) : error A2044: invalid character in file
heello.asm(2) : error A2085: instruction or register not accepted in current CPU
mode
D:\Masm32\Include\windows.inc(60) : error A2119: language type must be specified
D:\Masm32\Include\windows.inc(61) : error A2119: language type must be specified
D:\Masm32\Include\windows.inc(62) : error A2119: language type must be specified
我的代码是:
.386
.model flat,stdcall
option casemap:none
include windows.inc
include user32.inc
includelib user32.lib
include kernel32.inc
includelib kernel32.lib
.const
szCap db '天天酷跑',0
sztext db '来吧,和',0
.code
start: invoke MessageBox,NULL,offset szCap,offset sztext,MB_OK
invoke ExitProcess,NULL
end start |
|