47 lines
1017 B
C
47 lines
1017 B
C
////////////////////// compile-time options ////////////////////////////////
|
|
|
|
// selects between the supported video modes, see boot.h for enum listing those available
|
|
#define VIDEO_PREFERRED_MODE VIDEO_MODE_800x600
|
|
|
|
#define FLASH
|
|
|
|
//
|
|
// uncomment to force CD boot mode even if MBR present
|
|
// default is to boot from HDD if MBR present, else CD
|
|
//#define FORCE_CD_BOOT
|
|
//#define IS_XBE_CDLOADER
|
|
#define MENU
|
|
|
|
// uncomment to default to FATX boot if you
|
|
// run xromwell as bootloader for FATX
|
|
|
|
//#define DEFAULT_FATX
|
|
|
|
// Usefull combinations
|
|
//
|
|
// Booting from CD
|
|
//
|
|
// #define FORCE_CD_BOOT
|
|
// #define IS_XBE_CDLOADER
|
|
// #undef MENU
|
|
//
|
|
// Use xromwell as a normal bootselector from
|
|
// HDD
|
|
//
|
|
// #undef FORCE_CD_BOOT
|
|
// #undef IS_XBE_CDLOADER
|
|
// #define MENU
|
|
|
|
// display a line like Composite 480 detected if uncommented
|
|
#undef REPORT_VIDEO_MODE
|
|
|
|
// show the MBR table if the MBR is valid
|
|
#undef DISPLAY_MBR_INFO
|
|
|
|
// uncomment to do Ethernet init
|
|
//#define DO_ETHERNET 1
|
|
|
|
|
|
#undef DEBUG_MODE
|
|
#undef XPAD_VIBRA_STARTUP
|