sgdk
|
00001 00010 #ifndef _CONFIG_ 00011 #define _CONFIG_ 00012 00013 00018 #define LOG_LEVEL_DISABLE 0 00019 00023 #define LOG_LEVEL_ERROR 1 00024 00028 #define LOG_LEVEL_WARNING 2 00029 00033 #define LOG_LEVEL_INFO 3 00034 00039 #define LIB_LOG_LEVEL LOG_LEVEL_WARNING 00040 00045 #if (DEBUG != 0) 00046 #define LIB_DEBUG 1 00047 #else 00048 #define LIB_DEBUG 0 00049 #undef LIB_LOG_LEVEL 00050 #define LIB_LOG_LEVEL LOG_LEVEL_DISABLE 00051 #endif 00052 00060 #define HALT_Z80_ON_DMA 1 00061 00068 #define HALT_Z80_ON_IO 1 00069 00074 #define DMA_DISABLED 0 00075 00084 #define ENABLE_BANK_SWITCH 0 00085 00091 #define ENABLE_NEWLIB 0 00092 00097 #define ENABLE_LOGO 0 00098 00099 #if (ENABLE_LOGO != 0) 00100 00105 #define ZOOMING_LOGO 0 00106 00107 #endif // ENABLE_LOGO 00108 00113 #define MODULE_EVERDRIVE 0 00114 00120 #define MODULE_FAT16 0 00121 00122 // FAT16 need EVERDRIVE 00123 #if ((MODULE_EVERDRIVE == 0) && (MODULE_FAT16 != 0)) 00124 #error "Cannot enable FAT16 module without EVERDRIVE module" 00125 #endif 00126 00131 #define MODULE_MEGAWIFI 0 00132 00133 #endif // _CONFIG_