Bytes to ASM
Posted: Sat Feb 12, 2011 7:07 am
Code: Select all
oGame = OpenProcess_(#PROCESS_ALL_ACCESS,#Null,prcID)
Poke(buffer+0,$8b)
Poke(buffer+1,$00)
WriteProcessMemory_(oGame,hAddress,buffer,2,#Null)
Code: Select all
oGame = OpenProcess_(#PROCESS_ALL_ACCESS,#Null,prcID)
Poke(buffer+0,$8b)
Poke(buffer+1,$00)
WriteProcessMemory_(oGame,hAddress,buffer,2,#Null)
Inline asm? I think you don't understand what inline asm means.braveheart wrote:Is there a way to convert this into inline asm code?Code: Select all
oGame = OpenProcess_(#PROCESS_ALL_ACCESS,#Null,prcID) Poke(buffer+0,$8b) Poke(buffer+1,$00) WriteProcessMemory_(oGame,hAddress,buffer,2,#Null)