Enabling the Dragon 64 Keyboard Auto-Repeat

Hardware Hacking, Programming and Game Solutions/Cheats
Post Reply
zephyr
Posts: 1474
Joined: Mon Jul 21, 2008 1:18 am

Enabling the Dragon 64 Keyboard Auto-Repeat

Post by zephyr »

The recommended method of enabling the Dragon 64's Keyboard Auto-Repeat feature in 32 mode is as follows:

Code: Select all

10 POKE &HFF03,(PEEK(&HFF03)AND&HFE)
20 POKE &H10D,&HBF
30 POKE &H10E,&H20
40 POKE &HFF03,(PEEK(&HFF03)OR1)
The quickest and easiest method is the following variation of the same code:

Code: Select all

5 X=65283
10 POKEX,PEEK(X)AND254
20 POKE269,191:POKE270,32
30 SOUND1,1
Post Reply