Page 1 of 1

Help with pointers through script

Posted: Tue Sep 08, 2020 12:46 pm
by jmark81976
Hi. Can anyone here help me with this. I am trying to make a pointer scan for my script. It does seems to find the address which is related to float. It will only manage to find for a brief moment. After that, it couldn't find it anymore. Sorry, I'm still new at this.

Code: Select all

alloc(newmem,$1000)
globalalloc(hp,8)

hp:
dq (float)0

label(code)
label(return)

newmem:
  mov [hp],rax

code:
  movss [rax+14],xmm5
  jmp return