]> git.sur5r.net Git - cc65/blob - libsrc/lynx/joy/lynx-stdjoy.s
Removed joy_masks array.
[cc65] / libsrc / lynx / joy / lynx-stdjoy.s
1 ;
2 ; Standard joystick driver for the Atari Lynx.
3 ; The Lynx has two fire buttons. So it is not quite "standard".
4 ;
5 ; Modified by Karri Kaksonen, 2004-09-16
6 ; Ullrich von Bassewitz, 2002-12-20
7 ; Using code from Steve Schmidtke
8 ;
9
10         .include        "zeropage.inc"
11
12         .include        "joy-kernel.inc"
13         .include        "joy-error.inc"
14         .include        "lynx.inc"
15
16         .macpack        generic
17         .macpack        module
18
19
20 ; ------------------------------------------------------------------------
21 ; Header. Includes jump table
22
23         module_header   _lynx_stdjoy_joy
24
25 ; Driver signature
26
27         .byte   $6A, $6F, $79           ; "joy"
28         .byte   JOY_API_VERSION         ; Driver API version number
29
30 ; Library reference
31
32         .addr   $0000
33
34 ; Jump table.
35
36         .addr   INSTALL
37         .addr   UNINSTALL
38         .addr   COUNT
39         .addr   READ
40         .addr   0                       ; IRQ entry unused
41
42 ; ------------------------------------------------------------------------
43 ; Constants
44
45 JOY_COUNT       = 1             ; Number of joysticks we support
46
47
48 ; ------------------------------------------------------------------------
49 ; Data.
50
51
52 .code
53
54 ; ------------------------------------------------------------------------
55 ; INSTALL routine. Is called after the driver is loaded into memory. If
56 ; possible, check if the hardware is present and determine the amount of
57 ; memory available.
58 ; Must return an JOY_ERR_xx code in a/x.
59 ;
60
61 INSTALL:
62         lda #<JOY_ERR_OK
63         ldx #>JOY_ERR_OK
64 ;       rts                     ; Run into UNINSTALL instead
65
66 ; ------------------------------------------------------------------------
67 ; UNINSTALL routine. Is called before the driver is removed from memory.
68 ; Can do cleanup or whatever. Must not return anything.
69 ;
70
71 UNINSTALL:
72         rts
73
74
75 ; ------------------------------------------------------------------------
76 ; COUNT: Return the total number of available joysticks in a/x.
77 ;
78
79 COUNT:
80         lda     #<JOY_COUNT
81         ldx     #>JOY_COUNT
82         rts
83
84 ; ------------------------------------------------------------------------
85 ; READ: Read a particular joystick passed in A.
86
87 READ:
88         ldx     #$00            ; Clear high byte
89         lda     JOYSTICK        ; Read joystick
90         and     #$F3            ; Mask relevant keys
91         rts
92
93