1
0
mirror of https://github.com/tilleul/apple2.git synced 2024-11-26 12:49:18 +00:00

Update README.md

This commit is contained in:
tilleul 2021-05-19 13:14:08 +02:00 committed by GitHub
parent 6bcfb68603
commit 1c1286201a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`.
<img src="spc3.png" align="left" width=200px>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`.