1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

set DYN_DRV to 0; define atr5200std_joy

This commit is contained in:
Christian Groessler 2014-05-31 19:44:10 +02:00
parent 5595137d1d
commit 3508b90ee8

View File

@ -40,6 +40,11 @@
# error This module may only be used when compiling for the Atari 5200!
#endif
/* no support for dynamically loadable drivers */
#define DYN_DRV 0
/* the addresses of the static drivers */
extern void atr5200std_joy[]; /* referred to by joy_static_stddrv[] */
/* make GTIA color value */
#define _gtia_mkcolor(hue,lum) (((hue) << 4) | ((lum) << 1))