This page (revision-21) was last changed on 03-Feb-2023 15:21 by Roland B. Wassenberg 

This page was created on 07-Feb-2013 09:41 by Carsten Strotmann

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
21 03-Feb-2023 15:21 2 KB Roland B. Wassenberg to previous

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 8 changed one line
* [Atari CX85 Numerical Keypad-Technical Reference Notes|AtariCX85/Atari CX85 Numerical Keypad-Technical Reference Notes.pdf] (PDF)
* [Atari CX85 Numerical Keypad-Technical Reference Notes - 2 pages|AtariCX85/Atari CX85 Numerical Keypad-Technical Reference Notes.pdf] (PDF)
* [Atari CX85 Numerical Keypad-Technical Reference Notes - 1 page|Atari_CX85_Numerical_Keypad_Technical_Reference_Notes_1_page.pdf] (PDF) ; size: 10.5 MB
At line 12 changed one line
!!Driver
!!ATR-Images
* [The Atari CX85 Master Diskette CX8139.atr] ; Original master disk
* [AtariCX85/cx85.atr] ; Driver disk
* [Atari CX85 Numerical Keypad - Field Service Manual program|Atari_CX85_Numerical_Keypad-Field_Service_Manual_Program.atr] ; Basic program from the Field Service Manual to test the device
!!Source Codes
At line 15 changed 3 lines
* [AtariCX85/The Atari CX85 Master Diskette CX8139.atr] Original master disk
* [AtariCX85/cx85.atr] Driver disk
* [Atari CX85 Numerical Keypad - Field Service Manual program|AtariCX85.atr] ; Basic program from the Field Service Manual to test the device
* Atari CX85 Numerical Keypad - Field Service Manual Basic program to test the device:
{{{
0 GRAPHICS 0:DIM FUNC$(10):PRINT :PRINT
20 POKE 755,0:IF PEEK(645)=1 THEN 20
30 POKE 77,0:STICK1=PEEK(633)
40 ALLPOT=PEEK(53768):IF ALLPOT=0 THEN 40
50 IF ALLPOT=255 AND STICK1=12 THEN STICK1=16
60 FOR X=0 TO STICK1:READ A:NEXT X:IF A>9 THEN 80
70 PRINT A;" ";:GOTO 90
80 RESTORE 200:FOR X=0 TO A-10:READ FUNC$:NEXT X:PRINT FUNC$;" ";
90 FOR T=0 TO 50:NEXT T:RESTORE :GOTO 20
100 DATA 10,4,5,6,11,7,8,9,12,1,2,3,0,13,14,15,16
200 DATA DELETE,NO,YES,.,+ ENTER,-,ESCAPE
}}}