Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ARM CODES FOR GAMEGUARDIAN
- ARM64:
- mov X0, #0x1 // true
- ret
- ------------------------------------------
- mov X0, #0x0 // false, you need hexcodes
- ret
- ------------------------------------------
- mov X0, #0x7f000000 // high value
- ret
- ------------------------------------------
- ARM32:
- movw r0, #0xfdc // high value
- bx lr
- ------------------------------------------
- movw r0, #0x1 // true
- bx lr
- ------------------------------------------
- movw r0, #0x0 // false, you need hexcodes
- bx lr
Advertisement
Add Comment
Please, Sign In to add comment