首页
社区
课程
招聘
[旧帖] [求助]刚学汇编编译出错不知道怎么解决 0.00雪花
发表于: 2016-3-20 19:35 1719

[旧帖] [求助]刚学汇编编译出错不知道怎么解决 0.00雪花

2016-3-20 19:35
1719
.386
.model flat,stdcall
option casemap:none

include                D:\masm32\include\windows.inc
include                D:\masm32\include\user32.inc
includelib          D:\masm32\lib\user32.lib
include                D:\masm32\include\kernel32.inc
includelib                D:\masm32\lib\kernel32.lib

.data

szCaption                db               '计算结果',0
szText                db               '欢迎使用',0

.code

start:

        push ()
        push offset szCaption
        push offset szText
        push NULL

        call MessageBox

        push ()
        call ExitProcess
       
end start

那里出问题了,求大神指导

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

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 2671
活跃值: (4542)
能力值: ( LV9,RANK:240 )
在线值:
发帖
回帖
粉丝
2
你那个push()真的不是push 0?
2016-3-22 13:46
0
游客
登录 | 注册 方可回帖
返回
//