1
0
mirror of https://github.com/tilleul/apple2.git synced 2025-01-05 10:30:54 +00:00

Update README.md

This commit is contained in:
tilleul 2021-05-20 09:47:07 +02:00 committed by GitHub
parent cacadee70a
commit 2bb0247a12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,11 +4,11 @@ You know how `SPC()` can be used to PRINT a number of space characters. For exam
Why didn't they allow to print something else than space characters ? It would have been interesting (?) to have the ability to repeat a sequence of any character.
Maybe like `PRINT REPT("*",10)` would print 10 asterisks.
Maybe something like `PRINT REPT("*",10)` could have printed 10 asterisks.
But Applesoft does not provide such an instruction. So are we doomed to use `PRINT "**********"`?
Here's a technique that will allow you to repeat any character, even in `FLASH` and `INVERSE` without using additional 6502 routines.
Here's a technique that will allow you to repeat any character, even in `FLASH` and `INVERSE` without using additional 6502 routines. And it's very easy to implement !
## Discovery
Let's see something weird ...