2003-02-16 14:41:12 +00:00
|
|
|
;
|
|
|
|
; Standard joystick driver for the Commodore 510 (aka P500). May be used
|
|
|
|
; multiple times when linked to the statically application.
|
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-02-16
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "zeropage.inc"
|
2013-05-04 20:10:48 +00:00
|
|
|
.include "../extzp.inc"
|
2003-02-16 14:41:12 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "joy-kernel.inc"
|
2003-02-16 14:41:12 +00:00
|
|
|
.include "joy-error.inc"
|
|
|
|
.include "cbm510.inc"
|
2004-11-06 13:27:38 +00:00
|
|
|
|
2003-02-16 14:41:12 +00:00
|
|
|
.macpack generic
|
2014-06-04 21:50:18 +00:00
|
|
|
.macpack module
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Header. Includes jump table
|
|
|
|
|
2014-06-04 21:50:18 +00:00
|
|
|
module_header _cbm510_std_joy
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Driver signature
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte $6A, $6F, $79 ; "joy"
|
2003-12-16 22:38:12 +00:00
|
|
|
.byte JOY_API_VERSION ; Driver API version number
|
2003-02-16 14:41:12 +00:00
|
|
|
|
2013-05-31 22:36:08 +00:00
|
|
|
; Library reference
|
|
|
|
|
|
|
|
.addr $0000
|
|
|
|
|
2003-02-16 14:41:12 +00:00
|
|
|
; Button state masks (8 values)
|
|
|
|
|
|
|
|
.byte $01 ; JOY_UP
|
|
|
|
.byte $02 ; JOY_DOWN
|
|
|
|
.byte $04 ; JOY_LEFT
|
|
|
|
.byte $08 ; JOY_RIGHT
|
|
|
|
.byte $10 ; JOY_FIRE
|
2004-11-06 13:27:38 +00:00
|
|
|
.byte $00 ; JOY_FIRE2 unavailable
|
2003-02-16 14:41:12 +00:00
|
|
|
.byte $00 ; Future expansion
|
|
|
|
.byte $00 ; Future expansion
|
|
|
|
|
|
|
|
; Jump table.
|
|
|
|
|
2004-11-06 13:27:38 +00:00
|
|
|
.addr INSTALL
|
|
|
|
.addr UNINSTALL
|
|
|
|
.addr COUNT
|
|
|
|
.addr READ
|
|
|
|
.addr 0 ; IRQ entry unused
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Constants
|
|
|
|
|
|
|
|
JOY_COUNT = 2 ; Number of joysticks we support
|
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data.
|
|
|
|
|
|
|
|
|
|
|
|
.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:
|
|
|
|
lda #<JOY_ERR_OK
|
|
|
|
ldx #>JOY_ERR_OK
|
2013-05-09 11:56:54 +00:00
|
|
|
; rts ; Run into UNINSTALL instead
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
|
|
|
; Can do cleanup or whatever. Must not return anything.
|
|
|
|
;
|
|
|
|
|
|
|
|
UNINSTALL:
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; COUNT: Return the total number of available joysticks in a/x.
|
|
|
|
;
|
|
|
|
|
|
|
|
COUNT:
|
|
|
|
lda #<JOY_COUNT
|
|
|
|
ldx #>JOY_COUNT
|
|
|
|
rts
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; READ: Read a particular joystick passed in A.
|
|
|
|
;
|
|
|
|
|
|
|
|
READ: ldx #$0F ; Switch to the system bank
|
|
|
|
stx IndReg
|
2013-05-09 11:56:54 +00:00
|
|
|
tax ; Save joystick number
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Get the direction bits
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy #CIA::PRB
|
|
|
|
lda (cia2),y ; Read joystick inputs
|
|
|
|
sta tmp1
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Get the fire bits
|
|
|
|
|
2003-12-26 21:43:18 +00:00
|
|
|
ldy #CIA::PRA
|
2013-05-09 11:56:54 +00:00
|
|
|
lda (cia2),y
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Make the result value
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
cpx #$00 ; Joystick 0?
|
|
|
|
bne @L1 ; Jump if no
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Joystick 1, fire is in bit 6, direction in bit 0-3
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
asl a
|
|
|
|
jmp @L2
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Joystick 2, fire is in bit 7, direction in bit 5-7
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
@L1: ldx #$00 ; High byte of return value
|
|
|
|
lsr tmp1
|
|
|
|
lsr tmp1
|
|
|
|
lsr tmp1
|
|
|
|
lsr tmp1
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Mask the relavant bits, get the fire bit
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
@L2: asl a ; Fire bit into carry
|
|
|
|
lda tmp1
|
|
|
|
and #$0F
|
|
|
|
bcc @L3
|
|
|
|
ora #$10
|
|
|
|
@L3: eor #$1F ; All bits are inverted
|
2003-02-16 14:41:12 +00:00
|
|
|
|
|
|
|
; Switch back to the execution bank and return the joystick mask in a/x
|
|
|
|
|
|
|
|
ldy ExecReg
|
|
|
|
sty IndReg
|
|
|
|
rts
|
|
|
|
|