I want to patch a program,
in arm64-v8a assembly is
MOV W24, W0
I want to modify it to
MOV W24, #0x2
so I go to Edit -> Patch program -> Assemble, but it pop up a Warning message box display
Sorry, this processor module doesn't support the assembler.
I have to modify it in WinHex for manual modify it.
Now know in arm64-v8a, opcode of MOV W24, W0
is F8 03 00 2A
, so what is MOV W24, #0x2
of opcode.
And in armeabi-v7a, opcode of MOV R10, R0
is 82 46
, so what is MOV W24, #0x2
of opcode.
Thank you.