mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
pce: add system specific joy_masks array indices and macros
This commit is contained in:
parent
d277055b5a
commit
8ad72fc9ca
@ -76,6 +76,17 @@
|
||||
/* No support for dynamically loadable drivers */
|
||||
#define DYN_DRV 0
|
||||
|
||||
/* Expanding upon joystick.h */
|
||||
#define JOY_I 4
|
||||
#define JOY_II 5
|
||||
#define JOY_SELECT 6
|
||||
#define JOY_RUN 7
|
||||
|
||||
#define JOY_BTN_I(v) ((v) & joy_masks[JOY_I])
|
||||
#define JOY_BTN_II(v) ((v) & joy_masks[JOY_II])
|
||||
#define JOY_BTN_SELECT(v) ((v) & joy_masks[JOY_SELECT])
|
||||
#define JOY_BTN_RUN(v) ((v) & joy_masks[JOY_RUN])
|
||||
|
||||
/* The addresses of the static drivers */
|
||||
extern void pce_stdjoy_joy[]; /* Referred to by joy_static_stddrv[] */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user