From 8a1f420f8625db1474b521ea7ebe53f366f1e0f6 Mon Sep 17 00:00:00 2001 From: tslater2006 Date: Fri, 16 Jul 2021 13:07:22 -0500 Subject: [PATCH] docs: update cheats doc to clarify register usage on Code Type 5 This adds additional clarification for "Register Address Encoding" mode of Code Type 5 that the "R" nibble reflects both the destination as well as the base memory address. --- docs/features/cheats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/cheats.md b/docs/features/cheats.md index 9cebc952c..09e4393a2 100644 --- a/docs/features/cheats.md +++ b/docs/features/cheats.md @@ -128,7 +128,7 @@ Code type 5 allows loading a value from memory into a register, either using a f `5T0R10AA AAAAAAAA` + T: Width of memory read (1, 2, 4, or 8 bytes). -+ R: Register to load value into. ++ R: Register to load value into. (This register is also used as the base memory address). + A: Immediate offset to use from register R. ---