1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-11-22 01:31:33 +00:00

Updated VIC-20 game controller modules

This commit is contained in:
Curtis F Kaylor 2018-09-17 19:39:46 -04:00
parent a3fa942e30
commit 3c4e760baf
5 changed files with 7 additions and 10 deletions

View File

@ -1,4 +1,4 @@
;Joystick Assembly Language Library for VIC-20 ;Joystick Assembly Language Module for VIC-20
JYSTKS EQU $01 ;Number of Joysticks JYSTKS EQU $01 ;Number of Joysticks

View File

@ -1,4 +1,4 @@
/* Joystick Library Header File for VIC-20 */ /* Joystick Module Header File for VIC-20 */
#define JYSTKS $01 //Number of Joysticks #define JYSTKS $01 //Number of Joysticks

View File

@ -1,5 +1,4 @@
;Light Pen Constants and Functions ;Lightpen Assembly Language Module for VIC-20
;Non-Functional Skeleton for Systems with No Joystick Support
LGTPNS EQU #$FF ;Light Pen Status (Supported) LGTPNS EQU #$FF ;Light Pen Status (Supported)

View File

@ -1,6 +1,4 @@
/* Light Pen Header File * /* Lightpen Module Header File for VIC-20 */
* Nonfunctional Skeleton for *
* Systems w/o Light Pen Support */
#define LGTPNS $FF //Light Pen Status (Supported) #define LGTPNS $FF //Light Pen Status (Supported)

View File

@ -1,6 +1,6 @@
/***************************************************** /***************************************
* Screen Control Functions and Constants for VIC-20 * * Screen Control Functions for VIC-20 *
*****************************************************/ ***************************************/
/* Clear the Screen */ /* Clear the Screen */
void clrscn(); void clrscn();