docs: update cheats doc to clarify Code Type 5 encoding

This change removes references to the "M" nibble for the "Register Address" encoding of Code Type 5 whis is not used in this mode.

In the dword block the "M" has been replaced with a "0"
This commit is contained in:
tslater2006 2021-07-16 13:04:04 -05:00 committed by GitHub
parent 0c41489f01
commit 6a408e3bc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,10 +125,9 @@ Code type 5 allows loading a value from memory into a register, either using a f
+ A: Immediate offset to use from memory region base. + A: Immediate offset to use from memory region base.
#### Load from Register Address Encoding #### Load from Register Address Encoding
`5TMR10AA AAAAAAAA` `5T0R10AA AAAAAAAA`
+ T: Width of memory read (1, 2, 4, or 8 bytes). + T: Width of memory read (1, 2, 4, or 8 bytes).
+ M: Memory region to write to (0 = Main NSO, 1 = Heap).
+ R: Register to load value into. + R: Register to load value into.
+ A: Immediate offset to use from register R. + A: Immediate offset to use from register R.