[HELP/QUESTION] Recursive address increment in AA possible?
Posted: Sun Nov 14, 2021 6:33 am
So, here is my Starting script to get Base Pointer
Is it possible to add another script to edit multiple address (recursive) in AA? something like this
and is it possible to grab memoryS address from first script to other?
Spoiler
Code: Select all
[ENABLE]
aobscan(memorystart,D0 FF BD 27 21 68 A0 00 03 00 A3 30 01 00 05 24)
label(memoryS)
registersymbol(memoryS)
memorystart:
memoryS:
[DISABLE]
unregistersymbol(memoryS)
Code: Select all
newmem:
cmp [counter],#23
jle code
jmp return
code:
cmp [counter],#23
jg return
add [recursive],4 //add 4 each write
mov [memoryS+recursive],#99
add [counter],#1
jle newmem
jmp return
counter:
dd 1
return: