2004-10-26 21:01:50 +00:00
|
|
|
;
|
|
|
|
; Standard joypad driver for the NES. May be used multiple times when
|
|
|
|
; linked to the statically application.
|
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-05-02
|
|
|
|
; Stefan Haubenthal, 2004-10-05
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "zeropage.inc"
|
2004-10-26 21:01:50 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "joy-kernel.inc"
|
|
|
|
.include "joy-error.inc"
|
|
|
|
.include "nes.inc"
|
2004-10-26 21:01:50 +00:00
|
|
|
|
2014-06-04 21:50:18 +00:00
|
|
|
.macpack module
|
|
|
|
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Header. Includes jump table
|
|
|
|
|
2014-06-04 21:50:18 +00:00
|
|
|
module_header _nes_stdjoy_joy
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
; Driver signature
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte $6A, $6F, $79 ; "joy"
|
|
|
|
.byte JOY_API_VERSION ; Driver API version number
|
2004-10-26 21:01:50 +00:00
|
|
|
|
2013-05-31 22:36:08 +00:00
|
|
|
; Library reference
|
|
|
|
|
|
|
|
.addr $0000
|
|
|
|
|
2004-10-26 21:01:50 +00:00
|
|
|
; Button state masks (8 values)
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte $10 ; JOY_UP
|
|
|
|
.byte $20 ; JOY_DOWN
|
|
|
|
.byte $40 ; JOY_LEFT
|
|
|
|
.byte $80 ; JOY_RIGHT
|
|
|
|
.byte $01 ; JOY_FIRE (A)
|
|
|
|
.byte $02 ; JOY_FIRE2 (B)
|
|
|
|
.byte $04 ; (Select)
|
|
|
|
.byte $08 ; (Start)
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
; Jump table.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.addr INSTALL
|
|
|
|
.addr UNINSTALL
|
|
|
|
.addr COUNT
|
|
|
|
.addr READJOY
|
|
|
|
.addr 0 ; IRQ entry unused
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Constants
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
JOY_COUNT = 2 ; Number of joysticks we support
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
.code
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; INSTALL routine. Is called after the driver is loaded into memory. If
|
|
|
|
; possible, check if the hardware is present and determine the amount of
|
|
|
|
; memory available.
|
|
|
|
; Must return an JOY_ERR_xx code in a/x.
|
|
|
|
;
|
|
|
|
|
|
|
|
INSTALL:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #JOY_ERR_OK
|
|
|
|
ldx #0
|
|
|
|
; rts ; Run into UNINSTALL instead
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
|
|
|
; Can do cleanup or whatever. Must not return anything.
|
|
|
|
;
|
|
|
|
|
|
|
|
UNINSTALL:
|
2009-01-06 17:49:29 +00:00
|
|
|
rts
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; COUNT: Return the total number of available joysticks in a/x.
|
|
|
|
;
|
|
|
|
|
|
|
|
COUNT:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #JOY_COUNT
|
|
|
|
ldx #0
|
2009-01-06 17:49:29 +00:00
|
|
|
rts
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; READ: Read a particular joystick passed in A.
|
|
|
|
;
|
|
|
|
|
|
|
|
READJOY:
|
2013-05-09 11:56:54 +00:00
|
|
|
and #$01 ; Fix joystick number
|
|
|
|
tay ; Joystick number (0,1) into Y
|
2009-01-06 17:49:29 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #1
|
|
|
|
sta APU_PAD1,y
|
|
|
|
lda #0
|
|
|
|
sta APU_PAD1,y
|
2004-10-26 21:01:50 +00:00
|
|
|
|
|
|
|
; Read joystick
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #8
|
|
|
|
@Loop: lda APU_PAD1,y
|
|
|
|
ror a
|
|
|
|
ror tmp1
|
2009-01-06 17:49:29 +00:00
|
|
|
dex
|
2013-05-09 11:56:54 +00:00
|
|
|
bne @Loop
|
2009-01-06 17:49:29 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda tmp1
|
|
|
|
; ldx #$00 ; X implicitly fixed
|
2009-01-06 17:49:29 +00:00
|
|
|
rts
|