首页
社区
课程
招聘
[原创]获取游戏参数ASM源码
发表于: 2008-5-18 14:32 3856

[原创]获取游戏参数ASM源码

2008-5-18 14:32
3856
.code
start:
invoke GetCommandLine
inc eax
.while byte ptr [eax]!=22h
inc eax
.endw
add eax,2
invoke MessageBox,NULL,eax,NULL,NULL
invoke ExitProcess,NULL
end start

或者

.code
start:
invoke GetCommandLine
inc eax
.while 1
.if  byte ptr [eax]==22h
      add eax,2
       .break
.endif
inc eax
endw
invoke MessageBox,NULL,eax,NULL,NULL
invoke ExitProcess,NULL
end start

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

上传的附件:
收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//