- UID
- 151405
- 积分
- 131
- 推广
-
- 精华
- 阅读权限
- 40
- 最后登录
- 1970-1-1
- 在线时间
- 小时
- 性别
- 保密
|
发表于 2011-8-30 11:04:18
|
显示全部楼层
出现这个呢,是怎么翻译
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
movq [esi+20],xmm0
exit:
jmp returnhere
1D7EA2B2:
jmp newmem
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
1D7EA2B2:
movq [esi+20],xmm0
//Alt: db 66 0F D6 46 20 |
|