OK I give up! (nice easy one for a guru)
Posted: Fri Jan 06, 2012 12:05 pm
I have been trying to sort this all morning and getting totally head screwed!
All I want to do is get some bytes from memory, actually from an address of a procedure
I want this to return B8, start of the Mov EAX,1 code, I have tried everything (well obviously not EVERYTHING lol) I think my head is now just screwed and I cannot see the wood for the trees, PLEASE HELP.
Thanks
P
All I want to do is get some bytes from memory, actually from an address of a procedure
Code: Select all
Procedure Test()
EnableASM
MOV EAX,1
ADD EAX,2
DisableASM
EndProcedure
OpenConsole()
Address.l = @Test()
PrintN(Hex(PeekA(Address.l)))
JustWait$ = Input()
CloseConsole()
I want this to return B8, start of the Mov EAX,1 code, I have tried everything (well obviously not EVERYTHING lol) I think my head is now just screwed and I cannot see the wood for the trees, PLEASE HELP.
Thanks
P