I need help on making pointers for float addresses...
AC
alloc(newmem,$1000,TCSCNTR)
label(code)
label(return)
newmem:
code:
movss [rbx+000011D0],xmm0
jmp return
TCSCNTR:
jmp newmem
nop 3
return:
registersymbol(TCSCNTR)
[DISABLE]
TCSCNTR:
db F3 0F 11 83 D0 11 00 00
unregistersymbol(TCSCNTR)
dealloc(newmem)
mov [ITCS],rbx
to the code section.
I can no longer activate the script.
I wanted to use ITCS as a pointer and add the offset 11D0
The Assembly Code below is what I have currently...
Current AC
alloc(newmem,$1000,TCSCNTR)
alloc(ITCS,100)
label(code)
label(return)
newmem:
code:
movss [rbx+000011D0],xmm0
mov [ITCS],rbx
jmp return
TCSCNTR:
jmp newmem
nop 3
return:
registersymbol(TCSCNTR)
[DISABLE]
TCSCNTR:
db F3 0F 11 83 D0 11 00 00
unregistersymbol(TCSCNTR)
dealloc(newmem)
dealloc(ITCS)