Tatsugi How do I cheat?
Reputation: 0
Joined: 08 Jun 2013 Posts: 0
|
Posted: Thu Aug 02, 2018 3:06 am Post subject: Is there any possible way to set an address as value? |
|
|
I want to do a script like
mov [rcx+C0],[rcx+192E660]
where rcx (ex.) = 0BB99C80, and value = 0BB99C80+192E720
but this is wrong sequence so CE don't allow me to script it.
Is there any other way to do the similar sequence?
Nevermind, already found lea command for my needs.
| Code: | lea r13,[rcx+192E660]
mov [rcx+C0],r13 |
|
|