mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
15 lines
347 B
Plaintext
15 lines
347 B
Plaintext
|
;Paddle Controller Constants and Functions
|
||
|
;Non-Functional Skeleton for Systems with No Paddle77 Support
|
||
|
|
||
|
PADDLS EQU 0 ;Number of Joysticks
|
||
|
|
||
|
;Read Paddle
|
||
|
PADDLE: LDA #0 ;Return Zero
|
||
|
SEC ;and Carry Set
|
||
|
RTS
|
||
|
|
||
|
BUTTNS EQU 0 ;Number of Paddle Buttons
|
||
|
|
||
|
;Read Button
|
||
|
BUTTON: EQU PADDLE ;Return Zero & Carry Set
|