pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
308 B
15 lines
308 B
#ifndef JOYSTICK_H_
|
|
#define JOYSTICK_H_
|
|
|
|
unsigned char fakeport;
|
|
|
|
#define JOYISFIRE (0x01 & fakeport)
|
|
#define JOYISLEFT (0x02 & fakeport)
|
|
#define JOYISRIGHT (0x04 & fakeport)
|
|
#define JOYISDOWN (0x08 & fakeport)
|
|
#define JOYISUP (0x10 & fakeport)
|
|
|
|
unsigned char waitForFire;
|
|
|
|
|
|
#endif /*JOYSTICK_H_*/
|
|
|