泡泡战士穿墙代码如下:
[ENABLE]
alloc(newmem,2048)6/2kbshouldbeenough
label(returnhere)
label(originalcode)
label(exit)
newmem://thisisallocatedmemory,youhaveread,write,executeaccess
//placeyourcodehere
originalcode:
moval,00
ret
movedi,edi
exit:
jmpreturnhere
0050316b:
jmpnewmem
returnhere:
[DISABLE]
dealloc(newmem)
0050316b:
moval,01
ret
movedi,edi
//Alt:dbB001C38BFF
……