CODES17

Untitled

Nov 2nd, 2021
1,592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ARM CODES FOR GAMEGUARDIAN
  2.  
  3. ARM64:
  4.  
  5. mov X0, #0x1 // true
  6. ret
  7. ------------------------------------------
  8. mov X0, #0x0 // false, you need hexcodes
  9. ret
  10. ------------------------------------------
  11. mov X0, #0x7f000000 // high value
  12. ret
  13.  
  14. ------------------------------------------
  15. ARM32:
  16. movw r0, #0xfdc // high value
  17. bx lr
  18. ------------------------------------------
  19. movw r0, #0x1 // true
  20. bx lr
  21. ------------------------------------------
  22. movw r0, #0x0 // false, you need hexcodes
  23. bx lr
  24.  
Advertisement
Add Comment
Please, Sign In to add comment