mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 02:05:13 +00:00
96 lines
2.4 KiB
ArmAsm
96 lines
2.4 KiB
ArmAsm
|
|
||
|
;
|
||
|
; Standard joystick driver for the Gamate
|
||
|
;
|
||
|
|
||
|
.include "joy-kernel.inc"
|
||
|
.include "joy-error.inc"
|
||
|
.include "gamate.inc"
|
||
|
|
||
|
.macpack module
|
||
|
|
||
|
|
||
|
; ------------------------------------------------------------------------
|
||
|
; Header. Includes jump table
|
||
|
|
||
|
module_header _gamate_stdjoy_joy
|
||
|
|
||
|
; Driver signature
|
||
|
|
||
|
.byte $6A, $6F, $79 ; "joy"
|
||
|
.byte JOY_API_VERSION ; Driver API version number
|
||
|
|
||
|
; Library reference
|
||
|
|
||
|
.addr $0000
|
||
|
|
||
|
; 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_A
|
||
|
.byte $20 ; JOY_FIRE_B
|
||
|
.byte $80 ; JOY_SELECT
|
||
|
.byte $40 ; JOY_START
|
||
|
|
||
|
; Jump table.
|
||
|
|
||
|
.addr INSTALL
|
||
|
.addr UNINSTALL
|
||
|
.addr COUNT
|
||
|
.addr READJOY
|
||
|
.addr 0 ; IRQ entry unused
|
||
|
|
||
|
; ------------------------------------------------------------------------
|
||
|
; Constants
|
||
|
|
||
|
JOY_COUNT = 1 ; Number of joysticks we support
|
||
|
|
||
|
|
||
|
.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
|
||
|
|
||
|
; rts ; Run into UNINSTALL instead
|
||
|
|
||
|
; ------------------------------------------------------------------------
|
||
|
; DEINSTALL 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.
|
||
|
;
|
||
|
;unsigned char __fastcall__ joy_count (void);
|
||
|
|
||
|
COUNT:
|
||
|
lda #<JOY_COUNT
|
||
|
ldx #>JOY_COUNT
|
||
|
rts
|
||
|
|
||
|
; ------------------------------------------------------------------------
|
||
|
; READ: Read a particular joystick passed in A.
|
||
|
;
|
||
|
;unsigned char __fastcall__ joy_read (unsigned char joystick);
|
||
|
|
||
|
READJOY:
|
||
|
lda JOY_DATA
|
||
|
ldx #0
|
||
|
rts
|
||
|
|