2019-11-16 13:11:40 -05:00
|
|
|
;
|
2019-12-25 10:56:32 -05:00
|
|
|
; 2019-12-22, Greg King
|
2019-11-16 13:11:40 -05:00
|
|
|
;
|
|
|
|
; Link an interrupt handler if joysticks are used by a program.
|
|
|
|
;
|
|
|
|
|
|
|
|
.interruptor joy_libref, 9
|
|
|
|
|
|
|
|
.include "cbm_kernal.inc"
|
|
|
|
.include "cx16.inc"
|
|
|
|
|
|
|
|
|
|
|
|
joy_libref:
|
|
|
|
lda VERA::IRQ_FLAGS
|
|
|
|
lsr a
|
|
|
|
bcc not_vsync
|
2019-12-25 10:56:32 -05:00
|
|
|
jsr JOYSTICK_SCAN ; Bit-bang game controllers
|
2019-11-16 13:11:40 -05:00
|
|
|
clc ; Let other Jiffy handlers run
|
|
|
|
not_vsync:
|
|
|
|
rts
|