| How Do I Enable Automatic Character Insertion? | Programming/BASIC
With POKE 2026,255 you can automatically insert characters into rows. Disable it with POKE 2026,0.
This is equivalent to pressing ESC+A (enable) and ESC+C (disable).
Machine code equivalent: LDA #$FF STA $07EA (enable)
LDA #$00 sta $07EA (disable)
keys,keyboard,insert |
| |
Copyright © Plus/4 World Team, 2001-2024. Support Plus/4 World on Patreon |