Page 1 of 1

Enabling the Dragon 64 Keyboard Auto-Repeat

Posted: Mon Nov 26, 2012 2:06 pm
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