2 ; Joystick driver using C128 number pad in 64 mode.
3 ; May be used multiple times when linked to the statically application.
5 ; Stefan Haubenthal, 2004-01-26
6 ; Based on Ullrich von Bassewitz, 2002-12-20
9 .include "zeropage.inc"
11 .include "joy-kernel.inc"
12 .include "joy-error.inc"
18 ; ------------------------------------------------------------------------
19 ; Header. Includes jump table
25 .byte $6A, $6F, $79 ; "joy"
26 .byte JOY_API_VERSION ; Driver API version number
28 ; Button state masks (8 values)
30 .byte $02 ; JOY_UP "8"
31 .byte $10 ; JOY_DOWN "2"
32 .byte $20 ; JOY_LEFT "4"
33 .byte $08 ; JOY_RIGHT "6"
34 .byte $04 ; JOY_FIRE "5" ENTER
35 .byte $00 ; JOY_FIRE2 unavailable
36 .byte $00 ; Future expansion
37 .byte $00 ; Future expansion
45 .addr 0 ; IRQ entry unused
47 ; ------------------------------------------------------------------------
50 JOY_COUNT = 1 ; Number of joysticks we support
53 ; ------------------------------------------------------------------------
59 ; ------------------------------------------------------------------------
60 ; INSTALL routine. Is called after the driver is loaded into memory. If
61 ; possible, check if the hardware is present and determine the amount of
63 ; Must return an JOY_ERR_xx code in a/x.
67 lda #JOY_ERR_OK ; Assume we have a joystick
68 ldx VIC_CLK_128 ; Test for a C128
70 bne @C128 ; Jump if we have one
71 lda #JOY_ERR_NO_DEVICE ; No C128 -> no numpad
72 @C128: ldx #0 ; Set high byte
74 ; rts ; Run into UNINSTALL instead
76 ; ------------------------------------------------------------------------
77 ; UNINSTALL routine. Is called before the driver is removed from memory.
78 ; Can do cleanup or whatever. Must not return anything.
85 ; ------------------------------------------------------------------------
86 ; COUNT: Return the total number of available joysticks in a/x.
93 ; ------------------------------------------------------------------------
94 ; READ: Read a particular joystick passed in A.
97 READ: tax ; Clear high byte
110 sty VIC_KBD_128 ; Reset to $FF