]> git.sur5r.net Git - cc65/blob - libsrc/nes/joy/nes-stdjoy.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / nes / joy / nes-stdjoy.s
1 ;
2 ; Standard joypad driver for the NES. May be used multiple times when
3 ; linked to the statically application.
4 ;
5 ; Ullrich von Bassewitz, 2003-05-02
6 ; Stefan Haubenthal, 2004-10-05
7 ;
8
9         .include        "zeropage.inc"
10
11         .include        "joy-kernel.inc"
12         .include        "joy-error.inc"
13         .include        "nes.inc"
14
15
16 ; ------------------------------------------------------------------------
17 ; Header. Includes jump table
18
19 .segment        "JUMPTABLE"
20
21 ; Driver signature
22
23         .byte   $6A, $6F, $79           ; "joy"
24         .byte   JOY_API_VERSION         ; Driver API version number
25
26 ; Button state masks (8 values)
27
28         .byte   $10                     ; JOY_UP
29         .byte   $20                     ; JOY_DOWN
30         .byte   $40                     ; JOY_LEFT
31         .byte   $80                     ; JOY_RIGHT
32         .byte   $01                     ; JOY_FIRE      (A)
33         .byte   $02                     ; JOY_FIRE2     (B)
34         .byte   $04                     ;               (Select)
35         .byte   $08                     ;               (Start)
36
37 ; Jump table.
38
39         .addr   INSTALL
40         .addr   UNINSTALL
41         .addr   COUNT
42         .addr   READJOY
43         .addr   0                       ; IRQ entry unused
44
45 ; ------------------------------------------------------------------------
46 ; Constants
47
48 JOY_COUNT       = 2             ; Number of joysticks we support
49
50
51 .code
52
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
56 ; memory available.
57 ; Must return an JOY_ERR_xx code in a/x.
58 ;
59
60 INSTALL:
61         lda     #JOY_ERR_OK
62         ldx     #0
63 ;       rts                     ; Run into UNINSTALL instead
64
65 ; ------------------------------------------------------------------------
66 ; UNINSTALL routine. Is called before the driver is removed from memory.
67 ; Can do cleanup or whatever. Must not return anything.
68 ;
69
70 UNINSTALL:
71         rts
72
73
74 ; ------------------------------------------------------------------------
75 ; COUNT: Return the total number of available joysticks in a/x.
76 ;
77
78 COUNT:
79         lda     #JOY_COUNT
80         ldx     #0
81         rts
82
83 ; ------------------------------------------------------------------------
84 ; READ: Read a particular joystick passed in A.
85 ;
86
87 READJOY:
88         and     #$01            ; Fix joystick number
89         tay                     ; Joystick number (0,1) into Y
90
91         lda     #1
92         sta     APU_PAD1,y
93         lda     #0
94         sta     APU_PAD1,y
95
96 ; Read joystick
97
98         ldx     #8
99 @Loop:  lda     APU_PAD1,y
100         ror     a
101         ror     tmp1
102         dex
103         bne     @Loop
104
105         lda     tmp1
106 ;       ldx     #$00            ; X implicitly fixed
107         rts