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

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

2008-5-18 14:32
3860
.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

[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

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