mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-11 07:25:07 +01:00
527f3562ed
- LoRom (P0) will write up to 8MB starting from file 0x0 to flashrom 0x0. - HiRom (P0) will write up to 4MB starting from file 0x0 to flashrom 0x0. - ExLoRom (P1) will write the first 4MB starting from file 0x0 to flashrom 0x400000. And then a second block up to 4MB from file 0x400000 to flashrom 0x0. - ExHiRom (P1) will write the first 4MB starting from file 0x0 to flashrom 0x400000. And then a second block up to 4MB from file 0x400000 to flashrom 0x0.
34 lines
858 B
C
34 lines
858 B
C
//******************************************
|
|
// 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
|
|
|
|
// Read N64 Eeprom with Adadruit clockgen, CLK1 switch needs to be switch to ON
|
|
#define clockgen_installed
|
|
|
|
// define enable_XXX to enable
|
|
#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
|