mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
|
;Light Pen Constants and Functions
|
||
|
;Non-Functional Skeleton for Systems with No Joystick Support
|
||
|
|
||
|
LGTPNS EQU #0 ;Light Pen Status (Unsupported)
|
||
|
|
||
|
;Read Light Pen
|
||
|
LGTPEN: LDA #0 ;Return FALSE
|
||
|
TAY
|
||
|
TAX
|
||
|
SEC ;and Carry Set
|
||
|
RTS
|