mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
94ea416652
git-svn-id: svn://svn.cc65.org/cc65/trunk@1384 b7a2c559-68d2-44c3-8de9-860c34a00d81
43 lines
1.3 KiB
ArmAsm
43 lines
1.3 KiB
ArmAsm
;
|
|
; Ullrich von Bassewitz, 23.09.1998
|
|
; Adapted for Vic20 by Steve Schmidtke 05.08.2002
|
|
;
|
|
; unsigned readjoy (unsigned char joy);
|
|
;
|
|
|
|
.export _readjoy
|
|
|
|
.include "vic20.inc"
|
|
|
|
|
|
; The current implemenation will ignore the joystick number because we do only
|
|
; have one joystick
|
|
|
|
|
|
.proc _readjoy
|
|
|
|
lda #$7F ; mask for VIA2 JOYBIT: sw3
|
|
ldx #$C3 ; mask for VIA1 JOYBITS: sw0,sw1,sw2,sw4
|
|
sei ; necessary?
|
|
|
|
ldy VIA2_DDRB ; remember the date of DDRB
|
|
sta VIA2_DDRB ; set JOYBITS on this VIA for input
|
|
lda VIA2_JOY ; read JOYBIT: sw3
|
|
sty VIA2_DDRB ; restore the state of DDRB
|
|
asl ; Shift sw3 into carry
|
|
|
|
ldy VIA1_DDRA ; remember the state of DDRA
|
|
stx VIA1_DDRA ; set JOYBITS on this VIA for input
|
|
lda VIA1_JOY ; read JOYBITS: sw0,sw1,sw2,sw4
|
|
sty VIA1_DDRA ; restore the state of DDRA
|
|
|
|
cli ; necessary?
|
|
ror ; Shift sw3 into bit 7
|
|
and #$9E ; Mask relevant bits
|
|
eor #$9E ; Active states are inverted
|
|
|
|
rts
|
|
|
|
.endproc
|
|
|