2002-12-25 19:43:34 +00:00
|
|
|
;
|
2003-02-10 22:19:53 +00:00
|
|
|
; Standard joystick driver for the C64. May be used multiple times when linked
|
|
|
|
; to the statically application.
|
2002-12-25 19:43:34 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2002-12-20
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "zeropage.inc"
|
|
|
|
.include "joy-kernel.inc"
|
|
|
|
.include "joy-error.inc"
|
|
|
|
.include "geossym.inc"
|
2002-12-25 19:43:34 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.macpack generic
|
2014-06-04 21:50:18 +00:00
|
|
|
.macpack module
|
|
|
|
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Header. Includes jump table
|
|
|
|
|
2014-06-04 21:50:18 +00:00
|
|
|
module_header _geos_stdjoy_joy
|
|
|
|
|
2002-12-25 19:43:34 +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
|
2002-12-25 19:43:34 +00:00
|
|
|
|
2013-05-31 22:36:08 +00:00
|
|
|
; Library reference
|
|
|
|
|
|
|
|
.addr $0000
|
|
|
|
|
2002-12-25 19:43:34 +00:00
|
|
|
; Button state masks (8 values)
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte $01 ; JOY_UP
|
|
|
|
.byte $02 ; JOY_DOWN
|
|
|
|
.byte $04 ; JOY_LEFT
|
|
|
|
.byte $08 ; JOY_RIGHT
|
|
|
|
.byte $10 ; JOY_FIRE
|
|
|
|
.byte $00 ; Future expansion
|
|
|
|
.byte $00 ; Future expansion
|
|
|
|
.byte $00 ; Future expansion
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; Jump table.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.word INSTALL
|
|
|
|
.word UNINSTALL
|
|
|
|
.word COUNT
|
|
|
|
.word READ
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Constants
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
JOY_COUNT = 2 ; Number of joysticks we support
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; 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:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #<JOY_ERR_OK
|
|
|
|
ldx #>JOY_ERR_OK
|
|
|
|
; rts ; Run into UNINSTALL instead
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2003-02-10 22:19:53 +00:00
|
|
|
; UNINSTALL routine. Is called before the driver is removed from memory.
|
2002-12-25 19:43:34 +00:00
|
|
|
; Can do cleanup or whatever. Must not return anything.
|
|
|
|
;
|
|
|
|
|
2003-02-10 22:19:53 +00:00
|
|
|
UNINSTALL:
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2002-12-25 19:43:34 +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 #>JOY_COUNT
|
|
|
|
rts
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; READ: Read a particular joystick passed in A.
|
|
|
|
;
|
|
|
|
|
2003-08-20 12:09:39 +00:00
|
|
|
READ:
|
2013-05-09 11:56:54 +00:00
|
|
|
tax
|
|
|
|
php
|
|
|
|
sei ; disable IRQ
|
|
|
|
lda $01
|
|
|
|
pha
|
|
|
|
lda #$35
|
|
|
|
sta $01 ; enable I/O
|
2002-12-25 19:43:34 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
txa ; Joystick number into X
|
|
|
|
bne joy2
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; Read joystick 1
|
|
|
|
|
2003-02-10 22:19:53 +00:00
|
|
|
joy1:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #$7F
|
|
|
|
sta cia1base
|
|
|
|
lda cia1base+1
|
|
|
|
back: tay
|
|
|
|
pla
|
|
|
|
sta $01
|
|
|
|
plp
|
|
|
|
tya
|
|
|
|
and #$1F
|
|
|
|
eor #$1F
|
|
|
|
rts
|
2002-12-25 19:43:34 +00:00
|
|
|
|
|
|
|
; Read joystick 2
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
joy2: ldx #0
|
|
|
|
lda #$E0
|
|
|
|
ldy #$FF
|
|
|
|
sta cia1base+2
|
|
|
|
lda cia1base+1
|
|
|
|
sty cia1base+2
|
|
|
|
jmp back
|