2 ; PTV-4 Player joystick driver for the C64
4 ; Groepaz/Hitmen, 2002-12-23
5 ; obviously based on Ullrichs driver :)
8 .include "zeropage.inc"
10 .include "joy-kernel.inc"
11 .include "joy-error.inc"
16 ; ------------------------------------------------------------------------
17 ; Header. Includes jump table
23 .byte $6A, $6F, $79 ; "joy"
24 .byte JOY_API_VERSION ; Driver API version number
26 ; Button state masks (8 values)
33 .byte $00 ; JOY_FIRE2 unavailable
34 .byte $00 ; Future expansion
35 .byte $00 ; Future expansion
43 .addr 0 ; IRQ entry unused
45 ; ------------------------------------------------------------------------
48 JOY_COUNT = 4 ; Number of joysticks we support
53 ; ------------------------------------------------------------------------
54 ; INSTALL routine. Is called after the driver is loaded into memory. If
55 ; possible, check if the hardware is present and determine the amount of
57 ; Must return an JOY_ERR_xx code in a/x.
63 ; rts ; Run into UNINSTALL instead
65 ; ------------------------------------------------------------------------
66 ; UNINSTALL routine. Is called before the driver is removed from memory.
67 ; Can do cleanup or whatever. Must not return anything.
74 ; ------------------------------------------------------------------------
75 ; COUNT: Return the total number of available joysticks in a/x.
83 ; ------------------------------------------------------------------------
84 ; READ: Read a particular joystick passed in A.
87 READ: tax ; Joystick number into X
120 lda #%10000000 ; cia 2 port B Data-Direction
121 sta CIA2_DDRB ; bit 7: out bit 6-0: in
126 lda #$80 ; cia 2 port B read/write
127 sta CIA2_PRB ; (output one at PB7)
129 lda CIA2_PRB ; cia 2 port B read/write
130 and #$1f ; get bit 4-0 (PB4-PB0)
136 joy4: lda #$00 ; cia 2 port B read/write
137 sta CIA2_PRB ; (output zero at PB7)
139 lda CIA2_PRB ; cia 2 port B read/write
140 and #$0f ; get bit 3-0 (PB3-PB0)
141 sta tmp1 ; joy 4 directions
143 lda CIA2_PRB ; cia 2 port B read/write
144 and #%00100000 ; get bit 5 (PB5)