]> git.sur5r.net Git - cc65/blob - libsrc/vic20/vic20-stdjoy.s
New loadable mouse drivers
[cc65] / libsrc / vic20 / vic20-stdjoy.s
1 ;
2 ; Standard joystick driver for the VIC20. May be used multiple times when linked
3 ; to the statically application.
4 ;
5 ; Ullrich von Bassewitz, 2002-12-20
6 ; Using code from Steve Schmidtke
7 ;
8
9         .include        "zeropage.inc"
10
11         .include        "joy-kernel.inc"
12         .include        "joy-error.inc"
13         .include        "vic20.inc"
14
15         .macpack        generic
16
17
18 ; ------------------------------------------------------------------------
19 ; Header. Includes jump table
20
21 .segment        "JUMPTABLE"
22
23 ; Driver signature
24
25         .byte   $6A, $6F, $79           ; "joy"
26         .byte   JOY_API_VERSION         ; Driver API version number
27
28 ; Button state masks (8 values)
29
30         .byte   $02                     ; JOY_UP
31         .byte   $04                     ; JOY_DOWN
32         .byte   $08                     ; JOY_LEFT
33         .byte   $80                     ; JOY_RIGHT
34         .byte   $10                     ; JOY_FIRE
35         .byte   $00                     ; Future expansion
36         .byte   $00                     ; Future expansion
37         .byte   $00                     ; Future expansion
38
39 ; Jump table.
40
41         .word   INSTALL
42         .word   UNINSTALL
43         .word   COUNT
44         .word   READ
45
46 ; ------------------------------------------------------------------------
47 ; Constants
48
49 JOY_COUNT       = 1             ; Number of joysticks we support
50
51
52 ; ------------------------------------------------------------------------
53 ; Data.
54
55
56 .code
57
58 ; ------------------------------------------------------------------------
59 ; INSTALL routine. Is called after the driver is loaded into memory. If
60 ; possible, check if the hardware is present and determine the amount of
61 ; memory available.
62 ; Must return an JOY_ERR_xx code in a/x.
63 ;
64
65 INSTALL:
66         lda     #<JOY_ERR_OK
67         ldx     #>JOY_ERR_OK
68 ;       rts                     ; Run into UNINSTALL instead
69
70 ; ------------------------------------------------------------------------
71 ; UNINSTALL routine. Is called before the driver is removed from memory.
72 ; Can do cleanup or whatever. Must not return anything.
73 ;
74
75 UNINSTALL:
76         rts
77
78
79 ; ------------------------------------------------------------------------
80 ; COUNT: Return the total number of available joysticks in a/x.
81 ;
82
83 COUNT:
84         lda     #<JOY_COUNT
85         ldx     #>JOY_COUNT
86         rts
87
88 ; ------------------------------------------------------------------------
89 ; READ: Read a particular joystick passed in A.
90 ; The current implemenation will ignore the joystick number because we do only
91 ; have one joystick
92
93 READ:   lda     #$7F            ; mask for VIA2 JOYBIT: sw3
94         ldx     #$C3            ; mask for VIA1 JOYBITS: sw0,sw1,sw2,sw4
95         sei                     ; necessary?
96
97         ldy     VIA2_DDRB       ; remember the date of DDRB
98         sta     VIA2_DDRB       ; set JOYBITS on this VIA for input
99         lda     VIA2_JOY        ; read JOYBIT: sw3
100         sty     VIA2_DDRB       ; restore the state of DDRB
101         asl                     ; Shift sw3 into carry
102
103         ldy     VIA1_DDRA       ; remember the state of DDRA
104         stx     VIA1_DDRA       ; set JOYBITS on this VIA for input
105         lda     VIA1_JOY        ; read JOYBITS: sw0,sw1,sw2,sw4
106         sty     VIA1_DDRA       ; restore the state of DDRA
107
108         cli                     ; necessary?
109         ror                     ; Shift sw3 into bit 7
110         and     #$9E            ; Mask relevant bits
111         eor     #$9E            ; Active states are inverted
112
113         rts
114
115