retro/es_systems.cfg

83 lines
3.3 KiB
INI
Raw Normal View History

2015-09-12 19:52:39 +01:00
<!-- This is the EmulationStation Systems configuration file.
All systems must be contained within the <systemList> tag.-->
<systemList>
<!-- Here's an example system to get you started. -->
<system>
<!-- A short name, used internally. Traditionally lower-case. -->
<name>nes</name>
<!-- A "pretty" name, displayed in menus and such. -->
<fullname>Nintendo Entertainment System</fullname>
<!-- The path to start searching for ROMs in. '~' will be expanded to $HOME on Linux or %HOMEPATH% on Windows. -->
<path>~/roms/nes</path>
<!-- A list of extensions to search for, delimited by any of the whitespace characters (", \r\n\t").
You MUST include the period at the start of the extension! It's also case sensitive. -->
<extension>.nes .NES</extension>
<!-- The shell command executed when a game is selected. A few special tags are replaced if found in a command:
%ROM% is replaced by a bash-special-character-escaped absolute path to the ROM.
%BASENAME% is replaced by the "base" name of the ROM. For example, "/foo/bar.rom" would have a basename of "bar". Useful for MAME.
%ROM_RAW% is the raw, unescaped path to the ROM. -->
<command>retroarch -L ~/cores/libretro-fceumm.so %ROM%</command>
<!-- The platform to use when scraping. You can see the full list of accepted platforms in src/PlatformIds.cpp.
It's case sensitive, but everything is lowercase. This tag is optional.
You can use multiple platforms too, delimited with any of the whitespace characters (", \r\n\t"), eg: "genesis, megadrive" -->
<platform>nes</platform>
<!-- The theme to load from the current theme set. See THEMES.md for more information.
This tag is optional. If not set, it will default to the value of <name>. -->
<theme>nes</theme>
</system>
<system>
<name>nes</name>
<fullname> Nintendo Entertainment System</fullname>
<path>~/emulation/NES/roms/</path>
<extension>.nes .NES .zip .ZIP</extension>
<command>retroarch -L /usr/lib/libretro/nestopia_libretro.so %ROM%</command>
<platform>nes</platform>
<theme>nes</theme>
</system>
<system>
<name>snes</name>
<fullname>Super Nintendo Entertainment System</fullname>
<path>~/emulation/SNES/rom/</path>
<extension>.smc .SMC .zip .ZIP</extension>
<command>retroarch -L /usr/lib/libretro/bsnes_mercury_performance_libretro.so %ROM%</command>
<platform>snes</platform>
<theme>snes</theme>
</system>
<system>
<name>sega genesis</name>
<fullname>Sega Genesis</fullname>
<path>~/emulation/Sega/roms/</path>
<extension>.bin .BIN .zip .ZIP</extension>
<command>retroarch -L /usr/lib/libretro/picodrive_libretro.so %ROM%</command>
<platform>megadrive</platform>
<theme>megadrive</theme>
</system>
<system>
<name>nintendo 64</name>
<fullname>Nintendo 64</fullname>
<path>~/emulation/Nintendo64/roms/</path>
<extension>.v64 .V64 .n64 .N64 .z64 .Z64 .zip .ZIP</extension>
<command>retroarch -L /usr/lib/libretro/mupen64plus_libretro.so %ROM%</command>
<platform>n64</platform>
<theme>n64</theme>
</system>
<system>
<name>game boy advance</name>
<fullname>Game Boy Advance</fullname>
<path>~/emulation/GBA/roms/</path>
<extension>.gba .GBA .zip .ZIP</extension>
<command>retroarch -L /usr/lib/libretro/vba_next_libretro.so %ROM%</command>
<platform>gba</platform>
<theme>gba</theme>
</system>
</systemList>