mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-24 19:46:55 +01:00
38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
/*
|
|
* UAE - The Un*x Amiga Emulator
|
|
*
|
|
* Target specific stuff, AmigaOS version
|
|
*
|
|
* Copyright 1997 Bernd Schmidt
|
|
* Copyright 2003-2006 Richard Drummond
|
|
*/
|
|
|
|
#define TARGET_AMIGAOS
|
|
|
|
#define TARGET_NAME "amiga"
|
|
|
|
#define TARGET_ROM_PATH "PROGDIR:Roms/"
|
|
#define TARGET_FLOPPY_PATH "PROGDIR:Floppies/"
|
|
#define TARGET_HARDFILE_PATH "PROGDIR:HardFiles/"
|
|
#define TARGET_SAVESTATE_PATH "PROGDIR:SaveStates/"
|
|
|
|
#define UNSUPPORTED_OPTION_l
|
|
|
|
#define OPTIONSFILENAME ".uaerc"
|
|
//#define OPTIONS_IN_HOME
|
|
|
|
#define TARGET_SPECIAL_OPTIONS \
|
|
{ "x", " -x : Does not use dithering\n"}, \
|
|
{ "T", " -T : Try to use grayscale\n"},
|
|
#define COLOR_MODE_HELP_STRING \
|
|
"\nValid color modes (see -H) are:\n" \
|
|
" 0 => 256 cols max on customscreen;\n" \
|
|
" 1 => OpenWindow on default public screen;\n" \
|
|
" 2 => Ask the user to select a screen mode with ASL requester;\n" \
|
|
" 3 => use a 320x256 graffiti screen.\n\n"
|
|
|
|
#define DEFSERNAME "ser:"
|
|
#define DEFPRTNAME "par:"
|
|
|
|
#define NO_MAIN_IN_MAIN_C
|