Can you tell me what editing this assembly value did? #41
-
Hello. I used CTRPF search to find the address of gem apples in TKCD. I used CTRPF hex editor to edit the ARM value ("instruction"?) at this If you can tell me what I did exactly, that'd be great! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 23 replies
-
E1A00000 is the instruction |
Beta Was this translation helpful? Give feedback.
-
Hello. I was wondering, if I were to find the address of a ASM line that edits a value, |
Beta Was this translation helpful? Give feedback.
E1A00000 is the instruction
mov r0, r0
which moves the data from register 0 to register 0. Basically doing absolutely nothing. You could call itnop
as that is the instruction name for something which actually does nothing (would beE320F000
btw).