From 1c1286201a7507602f11deaff5ab74336e2e0f95 Mon Sep 17 00:00:00 2001 From: tilleul Date: Wed, 19 May 2021 13:14:08 +0200 Subject: [PATCH] Update README.md --- applesoft/spc/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/applesoft/spc/README.md b/applesoft/spc/README.md index 3a65296..81ed649 100644 --- a/applesoft/spc/README.md +++ b/applesoft/spc/README.md @@ -87,5 +87,6 @@ So ... `SPC()` is an Applesoft display routine. And as such, it will be influenc It turns out it's quite easy to do. You take the ASCII value of the character you want to display instead of the space character and you `POKE` it in `243` (`$F3`). -For example, the asterisk has an ASCII value of `42`, so we just do `POKE 243,42` and then `PRINT SPC(10)`. After that we restore the original state with `POKE 243,0`. +For example, the asterisk has an ASCII value of `42`, so we just do `POKE 243,42` and then `PRINT SPC(10)`. After that we restore the original state with `POKE 243,0`. +