首页
社区
课程
招聘
[旧帖] [讨论]关于RadMasm编译不能通过问题 0.00雪花
发表于: 2012-8-15 15:35 1489

[旧帖] [讨论]关于RadMasm编译不能通过问题 0.00雪花

2012-8-15 15:35
1489
我学习罗云彬win32汇编编译win32的Hello  World程序时出现如下错误

我的源代码如下 就是那个hello world的源代码
.386
.model flat,stdcall
option casemap:none
include windows.inc
include user32.inc
includelib user32.lib
include kernel32.inc
includelib kernel32.lib
.data
szcaption db`a message!`,0
sztext db`hello world!`,0
.code
start:
invoke messagebox,null,offset sztext,offset szcaption,MB_OK
invoke ExitProcess,
end start

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

上传的附件:
收藏
免费 0
支持
分享
最新回复 (3)
雪    币: 5
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
用双引号
szcaption db "a message!",0
sztext db "hello world!",0
2012-8-17 14:13
0
雪    币: 5
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
或者是单引号‘

楼主用的那个应该叫反引号·
2012-8-17 14:19
0
雪    币: 267
活跃值: (14)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
我用了单引号的哦 呵呵
现在问题解决了
不是那里的问题
2012-8-17 15:25
0
游客
登录 | 注册 方可回帖
返回
//