diff --git a/stranger_things/003 - Inline Text Modes/README.md b/stranger_things/003 - Inline Text Modes/README.md index 18ac44f..59f44d7 100644 --- a/stranger_things/003 - Inline Text Modes/README.md +++ b/stranger_things/003 - Inline Text Modes/README.md @@ -37,7 +37,7 @@ In `$FDED` is the monitor routine named `COUT`. Its role is to handle the output We have this: ```Assembly FDED: 6C 36 00 COUT JMP (CSWL) ; jump to location referenced by $36-$37 -FDF0: 48 COUT1 PHA ; normal monitor character output routine starts here +FDF0: 48 COUT1 PHA ; normal monitor character output routine starts here FDF1: ... ``` So, what we need to do is write in CSWL (zero page $36) and CSWH (zero page $37) the address where we want to handle the character output. @@ -125,14 +125,14 @@ We also want to initialize a flag stating that the "Peculiar mode" is not set ye So the code begins with: ```Assembly -300: A9 03 INIT LDA #>START -302: 85 37 STA CSWH -304: A9 0D LDA #START +302: 85 37 STA CSWH +304: A9 0D LDA #