mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-15 17:08:51 +00:00
11 lines
252 B
Plaintext
11 lines
252 B
Plaintext
/* Atari 2600 Joystick Functions for C02 */
|
|
|
|
//Joystick Directions
|
|
//#define STKUP = 1 //Joystick Up
|
|
//#define STKDN = 2 //Joystick Down
|
|
//#define STKLF = 4 //Joystick Left
|
|
//#define STKRT = 8 //Joystick Right
|
|
|
|
char getstk(); //Read Joystick
|
|
|