handlingcfg How do I cheat?
Reputation: 0
Joined: 01 Sep 2019 Posts: 8
|
Posted: Mon Sep 07, 2020 6:45 am Post subject: is it possbile to alloc some space (as int) when ce starts? |
|
|
what i want is kind of global integers allocated when ce starts, without activating auto assembler code on tables, then i would change and use in my codes.
i use code below as variable, i want to change the number before activating code
label(intlap)
registersymbol(intlap)
newmem:
code:
mov dl,[intlap]
mov cl,[esi+09]
jmp return
intlap:
dd (int)0
INJECT:
|
|