mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-11 07:25:07 +01:00
49 lines
1.5 KiB
C
49 lines
1.5 KiB
C
//******************************************
|
|
// GLOBAL OPTIONS
|
|
//******************************************
|
|
// Change mainMenu to snsMenu, mdMenu, n64Menu, gbxMenu, pcsMenu,
|
|
// flashMenu, nesMenu or smsMenu for single slot Cart Readers
|
|
#define startMenu mainMenu
|
|
|
|
// Comment out to change to Serial Output
|
|
// be sure to change the Arduino Serial Monitor to no line ending
|
|
#define enable_OLED
|
|
// Skip OLED start-up animation
|
|
//#define fast_start
|
|
// Enable the second button
|
|
#define enable_Button2
|
|
|
|
//******************************************
|
|
// ENABLED MODULES
|
|
//******************************************
|
|
// add // before #define to disable a module
|
|
#define enable_FLASH
|
|
#define enable_GBX
|
|
#define enable_MD
|
|
#define enable_N64
|
|
#define enable_NES
|
|
#define enable_NGP
|
|
#define enable_NP
|
|
#define enable_PCE
|
|
#define enable_SMS
|
|
#define enable_SNES
|
|
#define enable_SV
|
|
#define enable_WS
|
|
|
|
//******************************************
|
|
// N64 OPTIONS
|
|
//******************************************
|
|
// Read N64 Eeprom with Adadruit clockgen, CLK1 switch needs to be switch to ON
|
|
// add // and disable CLK1 switch if you don't have the clockgen installed or if you want to read a repros save
|
|
#define clockgen_installed
|
|
|
|
// Define CRC method for dumping N64 ROMs, slow seems to be more compatible with some SD cards
|
|
#define slowcrc // crc will be calculated after dumping from SD card instead of during dumping from memory
|
|
|
|
// saves a n64log.txt file with rom info in /N64/ROM
|
|
#define savesummarytotxt
|
|
|
|
// Setup RTC if installed.
|
|
// remove // if you have an RTC installed
|
|
// #define RTC_installed
|