1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 06:29:32 +00:00
C02/include/oric/joystk.h02
2018-09-16 20:53:34 -04:00

17 lines
475 B
Plaintext

/* Joystick Library Header File for Oric-1 *
* with ALTAI Joystick Adapter - UNTESTED! */
#define JYSTKS $02 //Number of Joysticks
#define JOYUP $10 //Bit 4 - Up
#define JOYDN $08 //Bit 3 - Down
#define JOYLF $01 //Bit 0 - Left
#define JOYRT $02 //Bit 1 - Right
#define JOYB0 $20 //Bit 5 - Button
/* Read Joystick State *
* Args: n = Joystick Number *
* Returns: Joystick Status *
* $FF = Invalid Argument */
char joystk();