diff --git a/CMakeLists.txt b/CMakeLists.txt index c9dfab320..6d93f8580 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,6 +71,9 @@ endif() if(APPLE) # For some strange reason, macOS complains about an uppercase 'P' in Pugixml. + # FreeBSD, NetBSD and OpenBSD also complain about this, but applying the same rule to + # these OSs lead to linking issues for some reason, so we'll have to live with those + # warnings for now. find_package(pugixml REQUIRED) elseif(UNIX) find_package(Pugixml REQUIRED) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 334c1c517..f1095c3dd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,12 +1,14 @@ -Contributing to EmulationStation Desktop Edition -================================================ +Contributing to EmulationStation Desktop Edition (ES-DE) +======================================================== ### Help needed: -Contributions to ES are very much appreciated as there are many things that need to be implemented and improved! Code commits is only one part of it, as work is also needed on the rbsimple-DE theme as well as thorough application testing. +Contributions to ES are very much appreciated as there are many things that need to be implemented and improved. Code commits is only one part of it, as work is also needed on the rbsimple-DE theme as well as thorough application testing. -A review of the CMake configuration files would be helpful. Although the building and package generation works more or less correctly, there are some hacks and similar in the CMakeLists.txt files that need improving by someone who really knows how this software package works. +A review of the CMake configuration files would be helpful. Although the building and package generation works more or less correctly, there are some hacks and similar in the CMakeLists.txt files that need improving by someone who really knows how this software package works. + +Work is also needed to get ES-DE into the repositories of the various supported operating systems. For example Debian, Fedora, FreeBSD, NetBSD and OpenBSD. This is an area where I have no experience so help with this would be fantastic. Regarding testing, it's impossible for me to test every game system as rbsimple-DE has support for more than a 100 different systems. There could be issues with the configuration template files, or within ES itself. So more testing is needed! diff --git a/INSTALL.md b/INSTALL.md index dde735b6c..31e74a50b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -8,7 +8,7 @@ Table of contents: ## Development Environment -EmulationStation-DE is developed and compiled using both Clang/LLVM and GCC on Unix, Clang/LLVM on macOS and GCC (MinGW) on Windows. I'm intending to get Clang/LLVM working on Windows as well. +EmulationStation-DE is developed and compiled using both Clang/LLVM and GCC on Unix, Clang/LLVM on macOS and GCC (MinGW) on Windows. I may try to get Clang/LLVM working on Windows as well. There are more details regarding compilers later in this document. @@ -19,19 +19,66 @@ Any code editor can be used of course, but I recommend [VSCode](https://code.vis The code has a few dependencies. For building, you'll need CMake and development packages for cURL, FreeImage, FreeType, libVLC, pugixml, SDL2 and RapidJSON. +### Installing dependencies + **On Debian/Ubuntu:** -All of the required packages can be easily installed with apt-get: +All of the required packages can be installed with apt-get: ``` sudo apt-get install build-essential cmake libsdl2-dev libfreeimage-dev libfreetype6-dev libcurl4-openssl-dev libpugixml-dev rapidjson-dev libasound2-dev libvlc-dev libgl1-mesa-dev ``` **On Fedora:** -For this operating system, use dnf (with rpmfusion activated) : +For this operating system, use dnf (with rpmfusion activated): ``` sudo dnf install cmake SDL2-devel freeimage-devel freetype-devel curl-devel rapidjson-devel alsa-lib-devel vlc-devel mesa-libGL-devel ``` -**Cloning and compiling:** +**On FreeBSD:** +Use pkg to install the dependencies: +``` +pkg install git pkgconf cmake sdl2 freeimage pugixml rapidjson vlc +``` + +Clang/LLVM and cURL should already be installed in the base OS image. + +**On NetBSD:** +Use pkgin to install the dependencies: +``` +pkgin install git cmake pkgconf SDL2 freeimage pugixml rapidjson vlc +``` + +NetBSD ships with GCC by default, and although you should be able to install and use Clang/LLVM, it's probably easier to just stick to the default compiler environment. + +**On OpenBSD:** +Use pkg_add to install the dependencies: +``` +pkg_add cmake pkgconf sdl2 freeimage vlc +``` + +In the same manner as for FreeBSD, Clang/LLVM and cURL should already be installed by default. + +RapidJSON is not part of the OpenBSD ports/package collection as of v6.8, so you need to compile it yourself. At the time of writing, the latest release v1.1.0 does not compile on OpenBSD, so you need to compile the master branch: + +``` +git clone https://github.com/Tencent/rapidjson +cd rapidjson +cmake . +make +make install +``` + +Pugixml does exist in the package collection but somehow this version is not properly detected by CMake, so you need to compile this manually as well: + +``` +git clone git://github.com/zeux/pugixml +cd pugixml +git checkout v1.10 +cmake . +make +make install +``` + +### Cloning and compiling ES-DE To clone the source repository, run the following: diff --git a/README.md b/README.md index 5a3d9ece2..91307e7eb 100644 --- a/README.md +++ b/README.md @@ -5,16 +5,21 @@ EmulationStation Desktop Edition is a cross-platform graphical front-end for emu As the name implies, this software is intended to be used on desktop computers. There is no support planned for Android or iOS or for any other closed software ecosystems. -Although there are multiple forks of EmulationStation in existence, the goal of this edition is to make the software as easy as possible to install and use as a standalone application, and to suppport the major desktop operating systems, i.e. Unix/Linux, macOS and Windows. +Although there are multiple forks of EmulationStation in existence, the goal of this edition is to make the software as easy as possible to install and use as a standalone application, and to suppport the major desktop operating systems, i.e. Unix/Linux, macOS and Windows. Since it's intended to be used as a desktop application rather than as the primary interface for the computer, there are no plans to provide system administration utilities or control of emulator settings from within ES-DE. -ES-DE v1.0 (the current version) has been tested on the following operating systems: +The current version 1.0 has been tested on the following operating systems: * Kubuntu 20.04 -* macOS 10.11.6 (El Capitan) +* FreeBSD 12.2 (x86) +* NetBSD 9.1 (x86) +* OpenBSD 6.8 (x86) (limited testing only) +* macOS 10.11.6 - El Capitan * Windows 10 (x86) * Windows 8.1 (x86) -At the moment Raspberry Pi is not supported, but this is planned for future releases. +At the moment Raspberry Pi is not supported, but this is planned for future releases. It may still be possible to compile and run ES-DE on this device, but as of v1.0 it's not actively used during development and therefore not tested. + +FreeBSD, NetBSD and OpenBSD are only partially supported. Although the application should work correctly on these operating systems, there is no plan to distribute installation packages as it wouldn't make much sense. The goal is rather to have ES-DE added to the ports/package collections of these systems. The software comes preconfigured for use primarily with [RetroArch](https://www.retroarch.com), although this can be changed as all emulator settings are fully configurable, even on a per-game basis. @@ -23,9 +28,9 @@ A comprehensive theme set, **rbsimple-DE** (which is based on Recalbox Multi fro Check out the [User Guide](USERGUIDE.md) for how to quickly get the application up and running. (It will also show how to use some of its more advanced features.) -### Help needed: +### Contributing: -If you would like to contribute to the development of EmulationStation Desktop Edition, please read how to participate [here](CONTRIBUTING.md). (You can also read about planned future features there). +If you would like to contribute to the development of ES-DE, then that's great! Please read how to participate [here](CONTRIBUTING.md). (You can also read about planned future features there). Other information @@ -42,25 +47,25 @@ Other information Some feature highlights ======================= -Here are some highlights of what EmulationStation Desktop Edition provides, displayed using the default theme set rbsimple-DE. There are of course many more features available, please refer to the [User Guide](USERGUIDE.md) for a comprehensive overview of all options and functionality! +Here are some highlights of what EmulationStation Desktop Edition provides, displayed using the default theme set rbsimple-DE. There are of course many more features available, please refer to the [User Guide](USERGUIDE.md) for a comprehensive overview of all options and functionality. ![alt text](images/v1.0/es-de_v1.0_system_view.png "ES-DE System View") _The 'System view', which is the default starting point for the application, it's here that you browse through your game systems._ ![alt text](images/v1.0/es-de_v1.0_gamelist_view.png "ES-DE Gamelist View") -_The 'Gamelist view', it's here that you browse the games for a specific system. Note the support for mixing files and folders, and as well the favorite games are marked with stars. There is a game counter to the upper right, displaying the total number of games and the number of favorite games for this system._ +_The 'Gamelist view', it's here that you browse the games for a specific system. Note the support for mixing files and folders, and as well that favorite games are marked with stars. There is a game counter to the upper right, displaying the total number of games and the number of favorite games for this system._ ![alt text](images/v1.0/es-de_v1.0_folder_support.png "ES-DE Folder Support") _Another example of the gamelist view, displaying advanced folder support. You can scrape folders for game info and game media, sort folders as you would files, mark them as favorites etc. In this example ES-DE has been configured to sort favorite games above non-favorites._ ![alt text](images/v1.0/es-de_v1.0_custom_collections.png "ES-DE Custom Collections") -_Games can be grouped into your own custom collections, in this example they're defined as game genres but you can name them to anything you like. All gamelist views including the custom collections support both game images or game videos. By default the rbsimple-DE theme will display the game image for a short moment before starting to play the game video._ +_Games can be grouped into your own custom collections, in this example they're defined as game genres but you can name them anything you like. All gamelist views including the custom collections support both game images or game videos. By default the rbsimple-DE theme will display the game image for a short moment before starting to play the game video._ ![alt text](images/v1.0/es-de_v1.0_scraper_running.png "ES-DE Scraper Running") _This is a view of the built-in scraper which downloads game info and game media from either [screenscraper.fr](https://screenscraper.fr) or [thegamesdb.net](https://thegamesdb.net). It's possible to scrape a single game, or to run the multi-scraper which can scrape a complete game system or even your entire collection._ ![alt text](images/v1.0/es-de_v1.0_scraper_settings.png "ES-DE Scraper Settings") -_There are many settings for the scraper including options to define which type of info and media to download. The above screenshot shows only a portion of all these settings. Also note the blurred and darkened background which is rendered by ES-DE's GLSL shaders whenever a menu is opened._ +_There are many settings for the scraper including options to define which type of info and media to download. The above screenshot shows only a portion of all these settings._ ![alt text](images/v1.0/es-de_v1.0_metadata_editor.png "ES-DE Metadata Editor") _In addition to the scraper there is a fully-featured metadata editor that can be used to modify information on a per-game basis. Here you can also toggle some additional flags which the scraper does not set, such as if the game is a favorite, or if you have completed it. Some of these flags can then be filtered in the gamelist view, letting you for instance only list games that you have not played through._ @@ -69,7 +74,7 @@ _In addition to the scraper there is a fully-featured metadata editor that can b _There are four types of built-in screensavers available, including a slideshow and the video screensaver showed in action above. These screensavers start after a configurable number of minutes of inactivity, and randomly display game media that you have previously scraped. If the corresponding option has been enabled, you can jump to the game from the screensaver, or even start it directly. There is shader support in ES-DE to render scanlines and screen blur on top of the videos (for the slideshow, scanline rendering is provided)._ ![alt text](images/v1.0/es-de_v1.0_ui_theme_support.png "ES-DE Theme Support") -_ES-DE is fully themeable, so if you prefer another look than what the default theme rbsimple-DE gives you, it's possible to apply another theme. In the example above a modified version of the [Fundamental](https://github.com/G-rila/es-theme-fundamental) theme is showed. Be aware though that although ES-DE is backwards compatible with older EmulationStation themes, some newer features which are specific to ES-DE will not work, at least not until the theme authors update their themes._ +_ES-DE is fully themeable, so if you prefer another look than what the default theme rbsimple-DE gives you, it's possible to apply another theme set. In the example above a modified version of the [Fundamental](https://github.com/G-rila/es-theme-fundamental) theme is used. Be aware though that although ES-DE is backwards compatible with older EmulationStation themes, some newer features which are specific to ES-DE will not work, at least not until the theme authors update their themes._ ![alt text](images/v1.0/es-de_v1.0_ui_easy_setup.png "ES-DE Easy Setup") _A lot of effort has been spent on trying to make ES-DE easy to setup and use. The above screenshot shows the dialog if starting the application without any game files present in the default ROM directory. Also, ES-DE ships with a very comprehensive game systems configuration file that is automatically installed upon first startup. Note though that the emulator setup is outside the scope of what ES-DE does, and as RetroArch is mostly used, please refer to their [web site](https://www.retroarch.com) for more information about that part of the configuration._ \ No newline at end of file diff --git a/USERGUIDE.md b/USERGUIDE.md index d89e8487b..284dc3c4c 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -15,7 +15,10 @@ The installation procedure will not be covered here as it differs between operat The following operating systems have been tested: * Kubuntu 20.04 -* macOS 10.11.6 (El Capitan) +* FreeBSD 12.2 (x86) +* NetBSD 9.1 (x86) +* OpenBSD 6.8 (x86) (limited testing only) +* macOS 10.11.6 - El Capitan * Windows 10 (x86) * Windows 8.1 (x86) @@ -1083,7 +1086,7 @@ The _Dim_ screensaver simply dims and desaturates the current view and _Black_ w If the option **Enable screensaver controls** has been activated, you can manually toggle the screensaver from the system view by pressing the 'Select' key. In addition to this, the controls will allow you to jump to a new random image or video using the left and right buttons on your keyboard or controller. It's also possible to launch the game currently displayed by pressing the 'A' button, and pressing the 'Y' button will jump to the game in its gamelist without starting it. ![alt text](images/v1.0/es-de_v1.0_screensaver.png "ES-DE Screensaver") -_An example of what the video screensaver looks like, with scanline rendering applied._ +_An example of what the video screensaver looks like._ ## Game collections diff --git a/es-app/src/FileFilterIndex.h b/es-app/src/FileFilterIndex.h index 36c251456..e213556fd 100644 --- a/es-app/src/FileFilterIndex.h +++ b/es-app/src/FileFilterIndex.h @@ -9,7 +9,7 @@ #ifndef ES_APP_FILE_FILTER_INDEX_H #define ES_APP_FILE_FILTER_INDEX_H -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) #include #endif diff --git a/es-app/src/MetaData.h b/es-app/src/MetaData.h index e1a47ed43..05ca8f0dd 100644 --- a/es-app/src/MetaData.h +++ b/es-app/src/MetaData.h @@ -10,7 +10,7 @@ #ifndef ES_APP_META_DATA_H #define ES_APP_META_DATA_H -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) #include #endif diff --git a/es-core/src/HttpReq.cpp b/es-core/src/HttpReq.cpp index 6b698a65e..e2615b2f1 100644 --- a/es-core/src/HttpReq.cpp +++ b/es-core/src/HttpReq.cpp @@ -61,7 +61,10 @@ HttpReq::HttpReq(const std::string& url) : mStatus(REQ_IN_PROGRESS), mHandle(nul // Mozilla project). There is a possibility to use the OS provided Schannel certificates // but I haven't been able to get this to work and it also seems to be problematic on // older Windows versions. - #if defined(_WIN64) + // For NetBSD 9.1 there is something wrong with the bundled Mozilla certificates, + // requiring us to bundle our own certificates. Maybe this will be resolved in future + // NetBSD versions, in which case this code can be disabled. + #if defined(_WIN64) || defined(__NetBSD__) curl_easy_setopt(mHandle, CURLOPT_CAINFO, ResourceManager::getInstance()-> getResourcePath(":/certificates/curl-ca-bundle.crt").c_str()); #endif diff --git a/es-core/src/PowerSaver.cpp b/es-core/src/PowerSaver.cpp index cc67a2b6c..621a121b3 100644 --- a/es-core/src/PowerSaver.cpp +++ b/es-core/src/PowerSaver.cpp @@ -11,7 +11,7 @@ #include "AudioManager.h" #include "Settings.h" -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) #include #endif diff --git a/es-core/src/Sound.h b/es-core/src/Sound.h index f04f24968..ba6fd7893 100644 --- a/es-core/src/Sound.h +++ b/es-core/src/Sound.h @@ -10,7 +10,7 @@ #ifndef ES_CORE_SOUND_H #define ES_CORE_SOUND_H -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) #include #endif diff --git a/es-core/src/utils/FileSystemUtil.cpp b/es-core/src/utils/FileSystemUtil.cpp index 5ea9903ae..71f7f5679 100644 --- a/es-core/src/utils/FileSystemUtil.cpp +++ b/es-core/src/utils/FileSystemUtil.cpp @@ -710,7 +710,7 @@ namespace Utils { std::string path = getGenericPath(_path); - #if defined(__APPLE__) + #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) struct stat info; return (stat(path.c_str(), &info) == 0); #elif defined(_WIN64) @@ -756,7 +756,7 @@ namespace Utils { std::string path = getGenericPath(_path); - #if defined(__APPLE__) + #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) struct stat info; if (stat(path.c_str(), &info) != 0) return false; @@ -778,7 +778,7 @@ namespace Utils { std::string path = getGenericPath(_path); - #if defined(__APPLE__) + #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) struct stat info; if (stat(path.c_str(), &info) != 0) return false; @@ -809,7 +809,7 @@ namespace Utils return true; #else - #if defined(__APPLE__) + #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) struct stat info; if (lstat(path.c_str(), &info) != 0) diff --git a/es-core/src/utils/TimeUtil.h b/es-core/src/utils/TimeUtil.h index f84e95fdb..27f70dd7f 100644 --- a/es-core/src/utils/TimeUtil.h +++ b/es-core/src/utils/TimeUtil.h @@ -10,6 +10,10 @@ #ifndef ES_CORE_UTILS_TIME_UTIL_H #define ES_CORE_UTILS_TIME_UTIL_H +#if defined(__FreeBSD__) || defined(__OpenBSD__) +#include +#endif + #include namespace Utils diff --git a/resources/templates/es_systems.cfg_freebsd b/resources/templates/es_systems.cfg_freebsd new file mode 100644 index 000000000..66eb1ec5e --- /dev/null +++ b/resources/templates/es_systems.cfg_freebsd @@ -0,0 +1,1120 @@ + + + + + 3do + 3DO + %ROMPATH%/3do + .iso .ISO .bin .BIN .chd .CHD .cue .CUE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/4do_libretro.so %ROM% + 3do + 3do + + + ags + Adventure Game Studio + %ROMPATH%/ags + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + ags + ags + + + amiga + Commodore Amiga + %ROMPATH%/amiga + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amiga + amiga + + + amiga600 + Commodore Amiga 600 + %ROMPATH%/amiga600 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amiga + amiga600 + + + amiga1200 + Commodore Amiga 1200 + %ROMPATH%/amiga1200 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amiga + amiga1200 + + + amigacd32 + Commodore Amiga CD32 + %ROMPATH%/amigacd32 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amigacd32 + amigacd32 + + + amstradcpc + Amstrad CPC + %ROMPATH%/amstradcpc + .dsk .DSK .sna .SNA .tap .TAR .cdt .CDT .voc .VOC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/cap32_libretro.so %ROM% + amstradcpc + amstradcpc + + + apple2 + Apple II + %ROMPATH%/apple2 + .nib .NIB .do .DO .po .PO .dsk .DSK .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + apple2 + apple2 + + + apple2gs + Apple IIGS + %ROMPATH%/apple2gs + .nib .NIB .do .DO .po .PO .dsk .DSK .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + apple2gs + apple2gs + + + arcade + Arcade + %ROMPATH%/arcade + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mame2016_libretro.so %ROM% + arcade + arcade + + + astrocade + Bally Astrocade + %ROMPATH%/astrocade + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + astrocade + astrocade + + + atari2600 + Atari 2600 + %ROMPATH%/atari2600 + .a26 .A26 .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/stella2014_libretro.so %ROM% + atari2600 + atari2600 + + + atari5200 + Atari 5200 + %ROMPATH%/atari5200 + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/atari800_libretro.so %ROM% + atari5200 + atari5200 + + + atari7800 + Atari 7800 ProSystem + %ROMPATH%/atari7800 + .a78 .A78 .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/prosystem_libretro.so %ROM% + atari7800 + atari7800 + + + atari800 + Atari 800 + %ROMPATH%/atari800 + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/atari800_libretro.so %ROM% + atari800 + atari800 + + + atarijaguar + Atari Jaguar + %ROMPATH%/atarijaguar + .j64 .J64 .jag .JAG .rom .ROM .abs .ABS .cof .COF .bin .BIN .prg .PRG .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/virtualjaguar_libretro.so %ROM% + atarijaguar, atarijaguarcd + atarijaguar + + + atarijaguarcd + Atari Jaguar CD + %ROMPATH%/atarijaguarcd + .j64 .J64 .jag .JAG .rom .ROM .abs .ABS .cof .COF .bin .BIN .prg .PRG .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/virtualjaguar_libretro.so %ROM% + atarijaguarcd + atarijaguarcd + + + atarilynx + Atari Lynx + %ROMPATH%/atarilynx + .lnx .LNX .o .O .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_lynx_libretro.so %ROM% + atarilynx + atarilynx + + + atarist + Atari ST + %ROMPATH%/atarist + .st .ST .msa .MSA .stx .STX .dim .DIM .ipf .IPF .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/hatari_libretro.so %ROM% + atarist + atarist + + + atarixe + Atari XE + %ROMPATH%/atarixe + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/atari800_libretro.so %ROM% + atarixe + atarixe + + + atomiswave + Atomiswave + %ROMPATH%/atomiswave + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .bin .BIN .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/flycast_libretro.so %ROM% + atomiswave + atomiswave + + + bbcmicro + BBC Micro + %ROMPATH%/bbcmicro + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + bbcmicro + bbcmicro + + + c64 + Commodore 64 + %ROMPATH%/c64 + .d64 .D64 .d71 .D71 .d80 .D80 .d81 .D81 .d82 .D82 .g64 .G64 .g41 .G41 .x64 .X64 .t64 .T64 .tap .TAP .prg .PRG .p00 .P00 .crt .CRT .bin .BIN .gz .GZ .d6z .D6Z .d7z .D7Z .d8z .D8Z .g6z .G6Z .x6z .X6Z .cmd .CMD .m3u .M3U .vsf .VSF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/vice_x64_libretro.so %ROM% + c64 + c64 + + + cavestory + Cave Story (NXEngine) + %ROMPATH%/cavestory + .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/nxengine_libretro.so %ROM% + cavestory + cavestory + + + cdtv + Commodore CDTV + %ROMPATH%/cdtv + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + cdtv + cdtv + + + chailove + ChaiLove game engine + %ROMPATH%/chailove + .chai .CHAI .chailove .CHAILOVE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/chailove_libretro.so %ROM% + love + chailove + + + channelf + Fairchild Channel F + %ROMPATH%/channelf + .bin .BIN .chf .CHF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/freechaf_libretro.so %ROM% + channelf + channelf + + + coco + Tandy Color Computer + %ROMPATH%/coco + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + coco + coco + + + coleco + ColecoVision + %ROMPATH%/coleco + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + colecovision + colecovision + + + daphne + Daphne Arcade Laserdisc Emulator + %ROMPATH%/daphne + .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/daphne_libretro.so %ROM% + daphne + daphne + + + desktop + Desktop applications + %ROMPATH%/desktop + .sh .csh + bash %ROM% + pc + desktop + + + doom + Doom + %ROMPATH%/doom + .wad .WAD .iwad .IWAD .pwad .PWAD + retroarch -L /usr/local/lib/libretro/prboom_libretro.so %ROM% + pc + doom + + + dos + DOS (PC) + %ROMPATH%/dos + .bat .BAT .com .COM .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dosbox_core_libretro.so %ROM% + dos + dos + + + dragon32 + Dragon 32 + %ROMPATH%/dragon32 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + dragon32 + dragon32 + + + dreamcast + Sega Dreamcast + %ROMPATH%/dreamcast + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/flycast_libretro.so %ROM% + dreamcast + dreamcast + + + famicom + Nintendo Family Computer + %ROMPATH%/famicom + .nes .NES .unf .UNF .unif .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fceumm_libretro.so %ROM% + nes, famicom + famicom + + + fba + Final Burn Alpha + %ROMPATH%/fba + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fbneo_libretro.so %ROM% + arcade + fba + + + fbneo + FinalBurn Neo + %ROMPATH%/fbneo + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fbneo_libretro.so %ROM% + arcade + fbneo + + + fds + Nintendo Famicom Disk System + %ROMPATH%/fds + .nes .NES .fds .FDS .unf .UNF .UNIF .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/nestopia_libretro.so %ROM% + fds + fds + + + gameandwatch + Nintendo Game and Watch + %ROMPATH%/gameandwatch + .mgw .MGW .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/gw_libretro.so %ROM% + gameandwatch + gameandwatch + + + gamegear + Sega Game Gear + %ROMPATH%/gamegear + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + gamegear + gamegear + + + gamecube + Nintendo GameCube + %ROMPATH%/gamecube + .gcm .GCM .iso .ISO .wbfs .WBFS .ciso .CISO .gcz .GCZ .elf .ELF .dol .DOL .dff .DFF .tgc .TGC .wad .WAD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dolphin_libretro.so %ROM% + gamecube + gc + + + gb + Nintendo Game Boy + %ROMPATH%/gb + .sfc .SFC .smc .SMC .gb .GB .gbc .GBC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bsnes_libretro.so %ROM% + gb + gb + + + gba + Nintendo Game Boy Advance + %ROMPATH%/gba + .gba .GBA .agb .AGB .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_gba_libretro.so %ROM% + gba + gba + + + gbc + Nintendo Game Boy Color + %ROMPATH%/gbc + .sfc .SFC .smc .SMC .gb .GB .gbc .GBC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bsnes_libretro.so %ROM% + gbc + gbc + + + genesis + Sega Genesis + %ROMPATH%/genesis + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + genesis, megadrive + genesis + + + gx4000 + Amstrad GX4000 + %ROMPATH%/gx4000 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + gx4000 + gx4000 + + + intellivision + Mattel Electronics Intellivision + %ROMPATH%/intellivision + .int .INT .bin .BIN .rom .ROM .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/freeintv_libretro.so %ROM% + intellivision + intellivision + + + kodi + Kodi home theatre software + %ROMPATH%/kodi + .sh .csh + bash %ROM% + pc + kodi + + + lutris + Lutris open gaming platform + %ROMPATH%/lutris + .sh .csh + bash %ROM% + pc + lutris + + + lutro + Lutro game engine + %ROMPATH%/lutro + .lua .LUA .lutro .LUTRO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/lutro_libretro.so %ROM% + lutro + lutro + + + macintosh + Apple Macintosh + %ROMPATH%/macintosh + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + macintosh + macintosh + + + mame + Multiple Arcade Machine Emulator + %ROMPATH%/mame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mame2016_libretro.so %ROM% + arcade + mame + + + mame-advmame + AdvanceMAME + %ROMPATH%/mame-advmame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + arcade + mame-advmame + + + mame-libretro + Multiple Arcade Machine Emulator + %ROMPATH%/mame-libretro + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mame_libretro.so %ROM% + arcade + mame-libretro + + + mame-mame4all + MAME4ALL + %ROMPATH%/mame-advmame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + arcade + mame-mame4all + + + mastersystem + Sega Master System + %ROMPATH%/mastersystem + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + mastersystem + mastersystem + + + megacd + Sega Mega-CD + %ROMPATH%/megacd + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + megacd + + + megacdjp + Sega Mega-CD + %ROMPATH%/megacdjp + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + megacdjp + + + megadrive + Sega Mega Drive + %ROMPATH%/megadrive + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + megadrive, genesis + megadrive + + + mess + Multi Emulator Super System + %ROMPATH%/mess + .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mess2015_libretro.so %ROM% + mess + mess + + + moonlight + Moonlight game streaming + %ROMPATH%/moonlight + .moonlight .MOONLIGHT .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + moonlight + moonlight + + + msx + MSX + %ROMPATH%/msx + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx + + + msx1 + MSX1 + %ROMPATH%/msx1 + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx1 + + + msx2 + MSX2 + %ROMPATH%/msx2 + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx2 + + + n64 + Nintendo 64 + %ROMPATH%/n64 + .n64 .N64 .v64 .V64 .z64 .Z64 .bin .BIN .u1 .U1 .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mupen64plus_next_libretro.so %ROM% + n64 + n64 + + + naomi + Sega NAOMI + %ROMPATH%/naomi + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .bin .BIN .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/flycast_libretro.so %ROM% + naomi + naomi + + + nds + Nintendo DS + %ROMPATH%/nds + .nds .NDS .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/melonds_libretro.so %ROM% + nds + nds + + + neogeo + Neo Geo + %ROMPATH%/neogeo + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fbneo_libretro.so %ROM% + neogeo + neogeo + + + neogeocd + Neo Geo CD + %ROMPATH%/neogeocd + .chd .CHD .cue .CUE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/neocd_libretro.so %ROM% + neogeocd + neogeocd + + + nes + Nintendo Entertainment System + %ROMPATH%/nes + .nes .NES .unf .UNF .unif .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fceumm_libretro.so %ROM% + nes + nes + + + ngp + Neo Geo Pocket + %ROMPATH%/ngp + .ngp .NGP .ngc .NGC .ngpc .NGPC .npc .NPC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_ngp_libretro.so %ROM% + ngp + ngp + + + ngpc + Neo Geo Pocket Color + %ROMPATH%/ngpc + .ngp .NGP .ngc .NGC .ngpc .NGPC .npc .NPC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_ngp_libretro.so %ROM% + ngpc + ngpc + + + odyssey2 + Magnavox Odyssey2 + %ROMPATH%/odyssey2 + .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/o2em_libretro.so %ROM% + odyssey2 + odyssey2 + + + openbor + OpenBOR game engine + %ROMPATH%/openbor + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + openbor + openbor + + + oric + Tangerine Computer Systems Oric + %ROMPATH%/oric + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + oric + oric + + + palm + Palm OS + %ROMPATH%/palm + .prc .PRC .pqa .PQA .img .IMG .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mu_libretro.so %ROM% + palm + palm + + + pc + IBM PC + %ROMPATH%/pc + .bat .BAT .com .COM .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dosbox_core_libretro.so %ROM% + pc + pc + + + pcengine + NEC PC Engine + %ROMPATH%/pcengine + .pce .PCE .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_fast_libretro.so %ROM% + pcengine + pcengine + + + pcenginecd + NEC PC Engine CD + %ROMPATH%/pcenginecd + .pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_libretro.so %ROM% + pcenginecd + pcenginecd + + + pcfx + NEC PC-FX + %ROMPATH%/pcfx + .cue CUE .ccd .CCD .toc .TOC .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pcfx_libretro.so %ROM% + pcfx + pcfx + + + pokemini + Nintendo Pokémon Mini + %ROMPATH%/pokemini + .min .MIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/pokemini_libretro.so %ROM% + pokemini + pokemini + + + ports + Ports + %ROMPATH%/ports + .sh .csh + bash %ROM% + pc + ports + + + ps2 + Sony PlayStation 2 + %ROMPATH%/ps2 + .iso .ISO .isz .ISZ .cso .CSO .bin .BIN .elf .ELF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/play_libretro.so %ROM% + ps2 + ps2 + + + psp + PlayStation Portable + %ROMPATH%/psp + .elf .ELF .iso .ISO .cso .CSO .prx .PRX .pbp .PBP .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/ppsspp_libretro.so %ROM% + psp + psp + + + psvita + PlayStation Vita + %ROMPATH%/psp + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + psvita + psvita + + + psx + Sony PlayStation 1 + %ROMPATH%/psx + .cue .CUE .toc .TOC .m3u .M3U .ccd .CCD .exe .EXE .pbp .PBP .chd .CHD .cbn .CBN .img .IMG .iso .ISO .mdf .MDF .z .Z .znx .ZNX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_psx_libretro.so %ROM% + psx + psx + + + residualvm + ResidualVM game engine + %ROMPATH%/residualvm + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + residualvm + residualvm + + + samcoupe + SAM Coupé + %ROMPATH%/samcoupe + .dsk .DSK .mgt .MGT .sbt .SBT .sad .SAD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/simcp_libretro.so %ROM% + samcoupe + samcoupe + + + satellaview + Nintendo Satellaview + %ROMPATH%/satellaview + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + satellaview + satellaview + + + saturn + Sega Saturn + %ROMPATH%/saturn + .ccd .CCD .chd .CHD .cue .CUE .toc .TOC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_saturn_libretro.so %ROM% + saturn + saturn + + + scummvm + ScummVM game engine + %ROMPATH%/scummvm + .scummvm .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/scummvm_libretro.so %ROM% + scummvm + scummvm + + + sega32x + Sega Mega Drive 32X + %ROMPATH%/sega32x + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32x + + + sega32xjp + Sega Super 32X + %ROMPATH%/sega32xjp + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32xjp + + + sega32xna + Sega Genesis 32X + %ROMPATH%/sega32xna + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32xna + + + segacd + Sega CD + %ROMPATH%/segacd + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + segacd + + + sg-1000 + Sega SG-1000 + %ROMPATH%/sg-1000 + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + sg-1000 + sg1000 + + + snes + Nintendo SNES (Super Nintendo) + %ROMPATH%/snes + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + snes + snes + + + snesna + Nintendo SNES (Super Nintendo) + %ROMPATH%/snesna + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + snes + snesna + + + solarus + Solarus game engine + %ROMPATH%/solarus + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + solarus + solarus + + + spectravideo + Spectravideo + %ROMPATH%/spectravideo + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + spectravideo + spectravideo + + + steam + Valve Steam + %ROMPATH%/steam + .sh .csh + bash %ROM% + pc + steam + + + stratagus + Stratagus game engine + %ROMPATH%/stratagus + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + stratagus + stratagus + + + sufami + Bandai SuFami Turbo + %ROMPATH%/sufami + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + sufami + sufami + + + supergrafx + NEC SuperGrafx + %ROMPATH%/supergrafx + .pce .PCE .sgx .SGX .cue .CUE .ccd .CCD .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_supergrafx_libretro.so %ROM% + supergrafx + supergrafx + + + thomson + Thomson TO/MO series + %ROMPATH%/thomson + .fd .FD .sap .SAP .k7 .K7 .m7 .M7 .m5 .M5 .rom .ROM .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/theodore_libretro.so %ROM% + thomson + thomson + + + tg16 + NEC TurboGrafx-16 + %ROMPATH%/tg16 + .pce .PCE .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_fast_libretro.so %ROM% + pcengine + tg16 + + + tg-cd + NEC TurboGrafx-CD + %ROMPATH%/tg-cd + .pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_libretro.so %ROM% + pcenginecd + tg-cd + + + ti99 + Texas Instruments TI-99 + %ROMPATH%/ti99 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + ti99 + ti99 + + + trs-80 + Tandy TRS-80 + %ROMPATH%/trs-80 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + trs-80 + trs-80 + + + uzebox + Uzebox + %ROMPATH%/uzebox + .uze .UZE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/uzem_libretro.so %ROM% + uzebox + uzebox + + + vectrex + Vectrex + %ROMPATH%/vectrex + .bin .BIN .vec .VEC .gam .GAM .vc .VC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/vecx_libretro.so %ROM% + vectrex + vectrex + + + videopac + Philips Videopac G7000 (Magnavox Odyssey2) + %ROMPATH%/videopac + .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/o2em_libretro.so %ROM% + videopac + videopac + + + virtualboy + Nintendo Virtual Boy + %ROMPATH%/virtualboy + .vb .VB .vboy .VBOY .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_vb_libretro.so %ROM% + virtualboy + virtualboy + + + wii + Nintendo Wii + %ROMPATH%/wii + .gcm .GCM .iso .ISO .wbfs .WBFS .ciso .CISO .gcz .GCZ .elf .ELF .dol .DOL .dff .DFF .tgc .TGC .wad .WAD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dolphin_libretro.so %ROM% + wii + wii + + + wiiu + Nintendo Wii U + %ROMPATH%/wiiu + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + wiiu + wiiu + + + wonderswan + Bandai WonderSwan + %ROMPATH%/wonderswan + .ws .WS .pc2 .PC2 .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_wswan_libretro.so %ROM% + wonderswan + wonderswan + + + wonderswancolor + Bandai WonderSwan Color + %ROMPATH%/wonderswancolor + .ws .WS .wsc .WSC .pc2 .PC2 .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_wswan_libretro.so %ROM% + wonderswancolor + wonderswancolor + + + x68000 + Sharp X68000 + %ROMPATH%/x68000 + .dim .DIM .img .IMG .d88 .D88 .88d .88D .hdm .HDM .dup .DUP .2hd .2HD .xdf .XDF .hdf .HDF .cmd .CMD .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/px68k_libretro.so %ROM% + x68000 + x68000 + + + xbox + Microsoft Xbox + %ROMPATH%/xbox + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + xbox + xbox + + + xbox360 + Microsoft Xbox 360 + %ROMPATH%/xbox360 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + xbox360 + xbox360 + + + zmachine + Infocom Z-machine + %ROMPATH%/zmachine + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + zmachine + zmachine + + + zx81 + Sinclair ZX81 + %ROMPATH%/zx81 + .tzx .TZX .p .P .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/81_libretro.so %ROM% + zx81 + zx81 + + + zxspectrum + Sinclair ZX Spectrum + %ROMPATH%/zxspectrum + .tzx .TZX .tap .TAP .z80 .Z80 .rzx .RZX .scl .SCL .trd .TRD .sh .SH .sna .SNA .szx .SZX .udi .UDI .mgt .MGT .img .IMG .dsk .DSK .gz .GZ .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fuse_libretro.so %ROM% + zxspectrum + zxspectrum + + diff --git a/resources/templates/es_systems.cfg_macos b/resources/templates/es_systems.cfg_macos index 0c9e71fef..c26e02cc7 100644 --- a/resources/templates/es_systems.cfg_macos +++ b/resources/templates/es_systems.cfg_macos @@ -1,5 +1,5 @@ - + 3do diff --git a/resources/templates/es_systems.cfg_netbsd b/resources/templates/es_systems.cfg_netbsd new file mode 100644 index 000000000..2ce8e0174 --- /dev/null +++ b/resources/templates/es_systems.cfg_netbsd @@ -0,0 +1,1120 @@ + + + + + 3do + 3DO + %ROMPATH%/3do + .iso .ISO .bin .BIN .chd .CHD .cue .CUE .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/4do_libretro.so %ROM% + 3do + 3do + + + ags + Adventure Game Studio + %ROMPATH%/ags + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + ags + ags + + + amiga + Commodore Amiga + %ROMPATH%/amiga + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/puae_libretro.so %ROM% + amiga + amiga + + + amiga600 + Commodore Amiga 600 + %ROMPATH%/amiga600 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/puae_libretro.so %ROM% + amiga + amiga600 + + + amiga1200 + Commodore Amiga 1200 + %ROMPATH%/amiga1200 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/puae_libretro.so %ROM% + amiga + amiga1200 + + + amigacd32 + Commodore Amiga CD32 + %ROMPATH%/amigacd32 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/puae_libretro.so %ROM% + amigacd32 + amigacd32 + + + amstradcpc + Amstrad CPC + %ROMPATH%/amstradcpc + .dsk .DSK .sna .SNA .tap .TAR .cdt .CDT .voc .VOC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/cap32_libretro.so %ROM% + amstradcpc + amstradcpc + + + apple2 + Apple II + %ROMPATH%/apple2 + .nib .NIB .do .DO .po .PO .dsk .DSK .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + apple2 + apple2 + + + apple2gs + Apple IIGS + %ROMPATH%/apple2gs + .nib .NIB .do .DO .po .PO .dsk .DSK .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + apple2gs + apple2gs + + + arcade + Arcade + %ROMPATH%/arcade + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mame2016_libretro.so %ROM% + arcade + arcade + + + astrocade + Bally Astrocade + %ROMPATH%/astrocade + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + astrocade + astrocade + + + atari2600 + Atari 2600 + %ROMPATH%/atari2600 + .a26 .A26 .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/stella2014_libretro.so %ROM% + atari2600 + atari2600 + + + atari5200 + Atari 5200 + %ROMPATH%/atari5200 + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/atari800_libretro.so %ROM% + atari5200 + atari5200 + + + atari7800 + Atari 7800 ProSystem + %ROMPATH%/atari7800 + .a78 .A78 .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/prosystem_libretro.so %ROM% + atari7800 + atari7800 + + + atari800 + Atari 800 + %ROMPATH%/atari800 + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/atari800_libretro.so %ROM% + atari800 + atari800 + + + atarijaguar + Atari Jaguar + %ROMPATH%/atarijaguar + .j64 .J64 .jag .JAG .rom .ROM .abs .ABS .cof .COF .bin .BIN .prg .PRG .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/virtualjaguar_libretro.so %ROM% + atarijaguar, atarijaguarcd + atarijaguar + + + atarijaguarcd + Atari Jaguar CD + %ROMPATH%/atarijaguarcd + .j64 .J64 .jag .JAG .rom .ROM .abs .ABS .cof .COF .bin .BIN .prg .PRG .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/virtualjaguar_libretro.so %ROM% + atarijaguarcd + atarijaguarcd + + + atarilynx + Atari Lynx + %ROMPATH%/atarilynx + .lnx .LNX .o .O .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_lynx_libretro.so %ROM% + atarilynx + atarilynx + + + atarist + Atari ST + %ROMPATH%/atarist + .st .ST .msa .MSA .stx .STX .dim .DIM .ipf .IPF .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/hatari_libretro.so %ROM% + atarist + atarist + + + atarixe + Atari XE + %ROMPATH%/atarixe + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/atari800_libretro.so %ROM% + atarixe + atarixe + + + atomiswave + Atomiswave + %ROMPATH%/atomiswave + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .bin .BIN .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/flycast_libretro.so %ROM% + atomiswave + atomiswave + + + bbcmicro + BBC Micro + %ROMPATH%/bbcmicro + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + bbcmicro + bbcmicro + + + c64 + Commodore 64 + %ROMPATH%/c64 + .d64 .D64 .d71 .D71 .d80 .D80 .d81 .D81 .d82 .D82 .g64 .G64 .g41 .G41 .x64 .X64 .t64 .T64 .tap .TAP .prg .PRG .p00 .P00 .crt .CRT .bin .BIN .gz .GZ .d6z .D6Z .d7z .D7Z .d8z .D8Z .g6z .G6Z .x6z .X6Z .cmd .CMD .m3u .M3U .vsf .VSF .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/vice_x64_libretro.so %ROM% + c64 + c64 + + + cavestory + Cave Story (NXEngine) + %ROMPATH%/cavestory + .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/nxengine_libretro.so %ROM% + cavestory + cavestory + + + cdtv + Commodore CDTV + %ROMPATH%/cdtv + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + cdtv + cdtv + + + chailove + ChaiLove game engine + %ROMPATH%/chailove + .chai .CHAI .chailove .CHAILOVE .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/chailove_libretro.so %ROM% + love + chailove + + + channelf + Fairchild Channel F + %ROMPATH%/channelf + .bin .BIN .chf .CHF .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/freechaf_libretro.so %ROM% + channelf + channelf + + + coco + Tandy Color Computer + %ROMPATH%/coco + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + coco + coco + + + coleco + ColecoVision + %ROMPATH%/coleco + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/bluemsx_libretro.so %ROM% + colecovision + colecovision + + + daphne + Daphne Arcade Laserdisc Emulator + %ROMPATH%/daphne + .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/daphne_libretro.so %ROM% + daphne + daphne + + + desktop + Desktop applications + %ROMPATH%/desktop + .sh .csh + bash %ROM% + pc + desktop + + + doom + Doom + %ROMPATH%/doom + .wad .WAD .iwad .IWAD .pwad .PWAD + retroarch -L /usr/pkg/lib/libretro/prboom_libretro.so %ROM% + pc + doom + + + dos + DOS (PC) + %ROMPATH%/dos + .bat .BAT .com .COM .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/dosbox_core_libretro.so %ROM% + dos + dos + + + dragon32 + Dragon 32 + %ROMPATH%/dragon32 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + dragon32 + dragon32 + + + dreamcast + Sega Dreamcast + %ROMPATH%/dreamcast + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/flycast_libretro.so %ROM% + dreamcast + dreamcast + + + famicom + Nintendo Family Computer + %ROMPATH%/famicom + .nes .NES .unf .UNF .unif .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/fceumm_libretro.so %ROM% + nes, famicom + famicom + + + fba + Final Burn Alpha + %ROMPATH%/fba + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/fbneo_libretro.so %ROM% + arcade + fba + + + fbneo + FinalBurn Neo + %ROMPATH%/fbneo + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/fbneo_libretro.so %ROM% + arcade + fbneo + + + fds + Nintendo Famicom Disk System + %ROMPATH%/fds + .nes .NES .fds .FDS .unf .UNF .UNIF .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/nestopia_libretro.so %ROM% + fds + fds + + + gameandwatch + Nintendo Game and Watch + %ROMPATH%/gameandwatch + .mgw .MGW .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/gw_libretro.so %ROM% + gameandwatch + gameandwatch + + + gamegear + Sega Game Gear + %ROMPATH%/gamegear + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + gamegear + gamegear + + + gamecube + Nintendo GameCube + %ROMPATH%/gamecube + .gcm .GCM .iso .ISO .wbfs .WBFS .ciso .CISO .gcz .GCZ .elf .ELF .dol .DOL .dff .DFF .tgc .TGC .wad .WAD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/dolphin_libretro.so %ROM% + gamecube + gc + + + gb + Nintendo Game Boy + %ROMPATH%/gb + .sfc .SFC .smc .SMC .gb .GB .gbc .GBC .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/bsnes_libretro.so %ROM% + gb + gb + + + gba + Nintendo Game Boy Advance + %ROMPATH%/gba + .gba .GBA .agb .AGB .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_gba_libretro.so %ROM% + gba + gba + + + gbc + Nintendo Game Boy Color + %ROMPATH%/gbc + .sfc .SFC .smc .SMC .gb .GB .gbc .GBC .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/bsnes_libretro.so %ROM% + gbc + gbc + + + genesis + Sega Genesis + %ROMPATH%/genesis + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + genesis, megadrive + genesis + + + gx4000 + Amstrad GX4000 + %ROMPATH%/gx4000 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + gx4000 + gx4000 + + + intellivision + Mattel Electronics Intellivision + %ROMPATH%/intellivision + .int .INT .bin .BIN .rom .ROM .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/freeintv_libretro.so %ROM% + intellivision + intellivision + + + kodi + Kodi home theatre software + %ROMPATH%/kodi + .sh .csh + bash %ROM% + pc + kodi + + + lutris + Lutris open gaming platform + %ROMPATH%/lutris + .sh .csh + bash %ROM% + pc + lutris + + + lutro + Lutro game engine + %ROMPATH%/lutro + .lua .LUA .lutro .LUTRO .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/lutro_libretro.so %ROM% + lutro + lutro + + + macintosh + Apple Macintosh + %ROMPATH%/macintosh + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + macintosh + macintosh + + + mame + Multiple Arcade Machine Emulator + %ROMPATH%/mame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mame2016_libretro.so %ROM% + arcade + mame + + + mame-advmame + AdvanceMAME + %ROMPATH%/mame-advmame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + arcade + mame-advmame + + + mame-libretro + Multiple Arcade Machine Emulator + %ROMPATH%/mame-libretro + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mame_libretro.so %ROM% + arcade + mame-libretro + + + mame-mame4all + MAME4ALL + %ROMPATH%/mame-advmame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + arcade + mame-mame4all + + + mastersystem + Sega Master System + %ROMPATH%/mastersystem + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + mastersystem + mastersystem + + + megacd + Sega Mega-CD + %ROMPATH%/megacd + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + megacd + + + megacdjp + Sega Mega-CD + %ROMPATH%/megacdjp + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + megacdjp + + + megadrive + Sega Mega Drive + %ROMPATH%/megadrive + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + megadrive, genesis + megadrive + + + mess + Multi Emulator Super System + %ROMPATH%/mess + .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mess2015_libretro.so %ROM% + mess + mess + + + moonlight + Moonlight game streaming + %ROMPATH%/moonlight + .moonlight .MOONLIGHT .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + moonlight + moonlight + + + msx + MSX + %ROMPATH%/msx + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx + + + msx1 + MSX1 + %ROMPATH%/msx1 + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx1 + + + msx2 + MSX2 + %ROMPATH%/msx2 + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx2 + + + n64 + Nintendo 64 + %ROMPATH%/n64 + .n64 .N64 .v64 .V64 .z64 .Z64 .bin .BIN .u1 .U1 .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mupen64plus_next_libretro.so %ROM% + n64 + n64 + + + naomi + Sega NAOMI + %ROMPATH%/naomi + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .bin .BIN .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/flycast_libretro.so %ROM% + naomi + naomi + + + nds + Nintendo DS + %ROMPATH%/nds + .nds .NDS .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/melonds_libretro.so %ROM% + nds + nds + + + neogeo + Neo Geo + %ROMPATH%/neogeo + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/fbneo_libretro.so %ROM% + neogeo + neogeo + + + neogeocd + Neo Geo CD + %ROMPATH%/neogeocd + .chd .CHD .cue .CUE .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/neocd_libretro.so %ROM% + neogeocd + neogeocd + + + nes + Nintendo Entertainment System + %ROMPATH%/nes + .nes .NES .unf .UNF .unif .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/fceumm_libretro.so %ROM% + nes + nes + + + ngp + Neo Geo Pocket + %ROMPATH%/ngp + .ngp .NGP .ngc .NGC .ngpc .NGPC .npc .NPC .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_ngp_libretro.so %ROM% + ngp + ngp + + + ngpc + Neo Geo Pocket Color + %ROMPATH%/ngpc + .ngp .NGP .ngc .NGC .ngpc .NGPC .npc .NPC .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_ngp_libretro.so %ROM% + ngpc + ngpc + + + odyssey2 + Magnavox Odyssey2 + %ROMPATH%/odyssey2 + .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/o2em_libretro.so %ROM% + odyssey2 + odyssey2 + + + openbor + OpenBOR game engine + %ROMPATH%/openbor + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + openbor + openbor + + + oric + Tangerine Computer Systems Oric + %ROMPATH%/oric + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + oric + oric + + + palm + Palm OS + %ROMPATH%/palm + .prc .PRC .pqa .PQA .img .IMG .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mu_libretro.so %ROM% + palm + palm + + + pc + IBM PC + %ROMPATH%/pc + .bat .BAT .com .COM .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/dosbox_core_libretro.so %ROM% + pc + pc + + + pcengine + NEC PC Engine + %ROMPATH%/pcengine + .pce .PCE .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_pce_fast_libretro.so %ROM% + pcengine + pcengine + + + pcenginecd + NEC PC Engine CD + %ROMPATH%/pcenginecd + .pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_pce_libretro.so %ROM% + pcenginecd + pcenginecd + + + pcfx + NEC PC-FX + %ROMPATH%/pcfx + .cue CUE .ccd .CCD .toc .TOC .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_pcfx_libretro.so %ROM% + pcfx + pcfx + + + pokemini + Nintendo Pokémon Mini + %ROMPATH%/pokemini + .min .MIN .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/pokemini_libretro.so %ROM% + pokemini + pokemini + + + ports + Ports + %ROMPATH%/ports + .sh .csh + bash %ROM% + pc + ports + + + ps2 + Sony PlayStation 2 + %ROMPATH%/ps2 + .iso .ISO .isz .ISZ .cso .CSO .bin .BIN .elf .ELF .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/play_libretro.so %ROM% + ps2 + ps2 + + + psp + PlayStation Portable + %ROMPATH%/psp + .elf .ELF .iso .ISO .cso .CSO .prx .PRX .pbp .PBP .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/ppsspp_libretro.so %ROM% + psp + psp + + + psvita + PlayStation Vita + %ROMPATH%/psp + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + psvita + psvita + + + psx + Sony PlayStation 1 + %ROMPATH%/psx + .cue .CUE .toc .TOC .m3u .M3U .ccd .CCD .exe .EXE .pbp .PBP .chd .CHD .cbn .CBN .img .IMG .iso .ISO .mdf .MDF .z .Z .znx .ZNX .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_psx_libretro.so %ROM% + psx + psx + + + residualvm + ResidualVM game engine + %ROMPATH%/residualvm + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + residualvm + residualvm + + + samcoupe + SAM Coupé + %ROMPATH%/samcoupe + .dsk .DSK .mgt .MGT .sbt .SBT .sad .SAD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/simcp_libretro.so %ROM% + samcoupe + samcoupe + + + satellaview + Nintendo Satellaview + %ROMPATH%/satellaview + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/snes9x_libretro.so %ROM% + satellaview + satellaview + + + saturn + Sega Saturn + %ROMPATH%/saturn + .ccd .CCD .chd .CHD .cue .CUE .toc .TOC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_saturn_libretro.so %ROM% + saturn + saturn + + + scummvm + ScummVM game engine + %ROMPATH%/scummvm + .scummvm .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/scummvm_libretro.so %ROM% + scummvm + scummvm + + + sega32x + Sega Mega Drive 32X + %ROMPATH%/sega32x + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32x + + + sega32xjp + Sega Super 32X + %ROMPATH%/sega32xjp + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32xjp + + + sega32xna + Sega Genesis 32X + %ROMPATH%/sega32xna + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32xna + + + segacd + Sega CD + %ROMPATH%/segacd + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + segacd + + + sg-1000 + Sega SG-1000 + %ROMPATH%/sg-1000 + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/genesis_plus_gx_libretro.so %ROM% + sg-1000 + sg1000 + + + snes + Nintendo SNES (Super Nintendo) + %ROMPATH%/snes + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/snes9x_libretro.so %ROM% + snes + snes + + + snesna + Nintendo SNES (Super Nintendo) + %ROMPATH%/snesna + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/snes9x_libretro.so %ROM% + snes + snesna + + + solarus + Solarus game engine + %ROMPATH%/solarus + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + solarus + solarus + + + spectravideo + Spectravideo + %ROMPATH%/spectravideo + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/bluemsx_libretro.so %ROM% + spectravideo + spectravideo + + + steam + Valve Steam + %ROMPATH%/steam + .sh .csh + bash %ROM% + pc + steam + + + stratagus + Stratagus game engine + %ROMPATH%/stratagus + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + stratagus + stratagus + + + sufami + Bandai SuFami Turbo + %ROMPATH%/sufami + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/snes9x_libretro.so %ROM% + sufami + sufami + + + supergrafx + NEC SuperGrafx + %ROMPATH%/supergrafx + .pce .PCE .sgx .SGX .cue .CUE .ccd .CCD .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_supergrafx_libretro.so %ROM% + supergrafx + supergrafx + + + thomson + Thomson TO/MO series + %ROMPATH%/thomson + .fd .FD .sap .SAP .k7 .K7 .m7 .M7 .m5 .M5 .rom .ROM .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/theodore_libretro.so %ROM% + thomson + thomson + + + tg16 + NEC TurboGrafx-16 + %ROMPATH%/tg16 + .pce .PCE .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_pce_fast_libretro.so %ROM% + pcengine + tg16 + + + tg-cd + NEC TurboGrafx-CD + %ROMPATH%/tg-cd + .pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_pce_libretro.so %ROM% + pcenginecd + tg-cd + + + ti99 + Texas Instruments TI-99 + %ROMPATH%/ti99 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + ti99 + ti99 + + + trs-80 + Tandy TRS-80 + %ROMPATH%/trs-80 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + trs-80 + trs-80 + + + uzebox + Uzebox + %ROMPATH%/uzebox + .uze .UZE .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/uzem_libretro.so %ROM% + uzebox + uzebox + + + vectrex + Vectrex + %ROMPATH%/vectrex + .bin .BIN .vec .VEC .gam .GAM .vc .VC .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/vecx_libretro.so %ROM% + vectrex + vectrex + + + videopac + Philips Videopac G7000 (Magnavox Odyssey2) + %ROMPATH%/videopac + .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/o2em_libretro.so %ROM% + videopac + videopac + + + virtualboy + Nintendo Virtual Boy + %ROMPATH%/virtualboy + .vb .VB .vboy .VBOY .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_vb_libretro.so %ROM% + virtualboy + virtualboy + + + wii + Nintendo Wii + %ROMPATH%/wii + .gcm .GCM .iso .ISO .wbfs .WBFS .ciso .CISO .gcz .GCZ .elf .ELF .dol .DOL .dff .DFF .tgc .TGC .wad .WAD .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/dolphin_libretro.so %ROM% + wii + wii + + + wiiu + Nintendo Wii U + %ROMPATH%/wiiu + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + wiiu + wiiu + + + wonderswan + Bandai WonderSwan + %ROMPATH%/wonderswan + .ws .WS .pc2 .PC2 .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_wswan_libretro.so %ROM% + wonderswan + wonderswan + + + wonderswancolor + Bandai WonderSwan Color + %ROMPATH%/wonderswancolor + .ws .WS .wsc .WSC .pc2 .PC2 .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/mednafen_wswan_libretro.so %ROM% + wonderswancolor + wonderswancolor + + + x68000 + Sharp X68000 + %ROMPATH%/x68000 + .dim .DIM .img .IMG .d88 .D88 .88d .88D .hdm .HDM .dup .DUP .2hd .2HD .xdf .XDF .hdf .HDF .cmd .CMD .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/px68k_libretro.so %ROM% + x68000 + x68000 + + + xbox + Microsoft Xbox + %ROMPATH%/xbox + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + xbox + xbox + + + xbox360 + Microsoft Xbox 360 + %ROMPATH%/xbox360 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + xbox360 + xbox360 + + + zmachine + Infocom Z-machine + %ROMPATH%/zmachine + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + zmachine + zmachine + + + zx81 + Sinclair ZX81 + %ROMPATH%/zx81 + .tzx .TZX .p .P .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/81_libretro.so %ROM% + zx81 + zx81 + + + zxspectrum + Sinclair ZX Spectrum + %ROMPATH%/zxspectrum + .tzx .TZX .tap .TAP .z80 .Z80 .rzx .RZX .scl .SCL .trd .TRD .sh .SH .sna .SNA .szx .SZX .udi .UDI .mgt .MGT .img .IMG .dsk .DSK .gz .GZ .7z .7Z .zip .ZIP + retroarch -L /usr/pkg/lib/libretro/fuse_libretro.so %ROM% + zxspectrum + zxspectrum + + diff --git a/resources/templates/es_systems.cfg_openbsd b/resources/templates/es_systems.cfg_openbsd new file mode 100644 index 000000000..8dbcee81d --- /dev/null +++ b/resources/templates/es_systems.cfg_openbsd @@ -0,0 +1,1120 @@ + + + + + 3do + 3DO + %ROMPATH%/3do + .iso .ISO .bin .BIN .chd .CHD .cue .CUE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/4do_libretro.so %ROM% + 3do + 3do + + + ags + Adventure Game Studio + %ROMPATH%/ags + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + ags + ags + + + amiga + Commodore Amiga + %ROMPATH%/amiga + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amiga + amiga + + + amiga600 + Commodore Amiga 600 + %ROMPATH%/amiga600 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amiga + amiga600 + + + amiga1200 + Commodore Amiga 1200 + %ROMPATH%/amiga1200 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amiga + amiga1200 + + + amigacd32 + Commodore Amiga CD32 + %ROMPATH%/amigacd32 + .adf .ADF .adz .ADZ .dms .DMS .fdi .FDI .ipf .IPF .hdf .HDF .hdz .HDZ .lha .LHA .cue .CUE .ccd .CCD .nrg .NRG .mds .MDS .iso .ISO .uae .UAE .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/puae_libretro.so %ROM% + amigacd32 + amigacd32 + + + amstradcpc + Amstrad CPC + %ROMPATH%/amstradcpc + .dsk .DSK .sna .SNA .tap .TAR .cdt .CDT .voc .VOC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/cap32_libretro.so %ROM% + amstradcpc + amstradcpc + + + apple2 + Apple II + %ROMPATH%/apple2 + .nib .NIB .do .DO .po .PO .dsk .DSK .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + apple2 + apple2 + + + apple2gs + Apple IIGS + %ROMPATH%/apple2gs + .nib .NIB .do .DO .po .PO .dsk .DSK .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + apple2gs + apple2gs + + + arcade + Arcade + %ROMPATH%/arcade + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mame2016_libretro.so %ROM% + arcade + arcade + + + astrocade + Bally Astrocade + %ROMPATH%/astrocade + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + astrocade + astrocade + + + atari2600 + Atari 2600 + %ROMPATH%/atari2600 + .a26 .A26 .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/stella2014_libretro.so %ROM% + atari2600 + atari2600 + + + atari5200 + Atari 5200 + %ROMPATH%/atari5200 + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/atari800_libretro.so %ROM% + atari5200 + atari5200 + + + atari7800 + Atari 7800 ProSystem + %ROMPATH%/atari7800 + .a78 .A78 .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/prosystem_libretro.so %ROM% + atari7800 + atari7800 + + + atari800 + Atari 800 + %ROMPATH%/atari800 + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/atari800_libretro.so %ROM% + atari800 + atari800 + + + atarijaguar + Atari Jaguar + %ROMPATH%/atarijaguar + .j64 .J64 .jag .JAG .rom .ROM .abs .ABS .cof .COF .bin .BIN .prg .PRG .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/virtualjaguar_libretro.so %ROM% + atarijaguar, atarijaguarcd + atarijaguar + + + atarijaguarcd + Atari Jaguar CD + %ROMPATH%/atarijaguarcd + .j64 .J64 .jag .JAG .rom .ROM .abs .ABS .cof .COF .bin .BIN .prg .PRG .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/virtualjaguar_libretro.so %ROM% + atarijaguarcd + atarijaguarcd + + + atarilynx + Atari Lynx + %ROMPATH%/atarilynx + .lnx .LNX .o .O .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_lynx_libretro.so %ROM% + atarilynx + atarilynx + + + atarist + Atari ST + %ROMPATH%/atarist + .st .ST .msa .MSA .stx .STX .dim .DIM .ipf .IPF .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/hatari_libretro.so %ROM% + atarist + atarist + + + atarixe + Atari XE + %ROMPATH%/atarixe + .xfd .XFD .atr .ATR .atx .ATX .cdm .CDM .cas .CAS .bin .BIN .a52 .A52 .xex .XEX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/atari800_libretro.so %ROM% + atarixe + atarixe + + + atomiswave + Atomiswave + %ROMPATH%/atomiswave + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .bin .BIN .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/flycast_libretro.so %ROM% + atomiswave + atomiswave + + + bbcmicro + BBC Micro + %ROMPATH%/bbcmicro + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + bbcmicro + bbcmicro + + + c64 + Commodore 64 + %ROMPATH%/c64 + .d64 .D64 .d71 .D71 .d80 .D80 .d81 .D81 .d82 .D82 .g64 .G64 .g41 .G41 .x64 .X64 .t64 .T64 .tap .TAP .prg .PRG .p00 .P00 .crt .CRT .bin .BIN .gz .GZ .d6z .D6Z .d7z .D7Z .d8z .D8Z .g6z .G6Z .x6z .X6Z .cmd .CMD .m3u .M3U .vsf .VSF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/vice_x64_libretro.so %ROM% + c64 + c64 + + + cavestory + Cave Story (NXEngine) + %ROMPATH%/cavestory + .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/nxengine_libretro.so %ROM% + cavestory + cavestory + + + cdtv + Commodore CDTV + %ROMPATH%/cdtv + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + cdtv + cdtv + + + chailove + ChaiLove game engine + %ROMPATH%/chailove + .chai .CHAI .chailove .CHAILOVE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/chailove_libretro.so %ROM% + love + chailove + + + channelf + Fairchild Channel F + %ROMPATH%/channelf + .bin .BIN .chf .CHF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/freechaf_libretro.so %ROM% + channelf + channelf + + + coco + Tandy Color Computer + %ROMPATH%/coco + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + coco + coco + + + coleco + ColecoVision + %ROMPATH%/coleco + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + colecovision + colecovision + + + daphne + Daphne Arcade Laserdisc Emulator + %ROMPATH%/daphne + .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/daphne_libretro.so %ROM% + daphne + daphne + + + desktop + Desktop applications + %ROMPATH%/desktop + .sh .csh + bash %ROM% + pc + desktop + + + doom + Doom + %ROMPATH%/doom + .wad .WAD .iwad .IWAD .pwad .PWAD + retroarch -L /usr/local/lib/libretro/prboom_libretro.so %ROM% + pc + doom + + + dos + DOS (PC) + %ROMPATH%/dos + .bat .BAT .com .COM .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dosbox_core_libretro.so %ROM% + dos + dos + + + dragon32 + Dragon 32 + %ROMPATH%/dragon32 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + dragon32 + dragon32 + + + dreamcast + Sega Dreamcast + %ROMPATH%/dreamcast + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/flycast_libretro.so %ROM% + dreamcast + dreamcast + + + famicom + Nintendo Family Computer + %ROMPATH%/famicom + .nes .NES .unf .UNF .unif .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fceumm_libretro.so %ROM% + nes, famicom + famicom + + + fba + Final Burn Alpha + %ROMPATH%/fba + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fbneo_libretro.so %ROM% + arcade + fba + + + fbneo + FinalBurn Neo + %ROMPATH%/fbneo + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fbneo_libretro.so %ROM% + arcade + fbneo + + + fds + Nintendo Famicom Disk System + %ROMPATH%/fds + .nes .NES .fds .FDS .unf .UNF .UNIF .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/nestopia_libretro.so %ROM% + fds + fds + + + gameandwatch + Nintendo Game and Watch + %ROMPATH%/gameandwatch + .mgw .MGW .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/gw_libretro.so %ROM% + gameandwatch + gameandwatch + + + gamegear + Sega Game Gear + %ROMPATH%/gamegear + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + gamegear + gamegear + + + gamecube + Nintendo GameCube + %ROMPATH%/gamecube + .gcm .GCM .iso .ISO .wbfs .WBFS .ciso .CISO .gcz .GCZ .elf .ELF .dol .DOL .dff .DFF .tgc .TGC .wad .WAD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dolphin_libretro.so %ROM% + gamecube + gc + + + gb + Nintendo Game Boy + %ROMPATH%/gb + .sfc .SFC .smc .SMC .gb .GB .gbc .GBC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bsnes_libretro.so %ROM% + gb + gb + + + gba + Nintendo Game Boy Advance + %ROMPATH%/gba + .gba .GBA .agb .AGB .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_gba_libretro.so %ROM% + gba + gba + + + gbc + Nintendo Game Boy Color + %ROMPATH%/gbc + .sfc .SFC .smc .SMC .gb .GB .gbc .GBC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bsnes_libretro.so %ROM% + gbc + gbc + + + genesis + Sega Genesis + %ROMPATH%/genesis + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + genesis, megadrive + genesis + + + gx4000 + Amstrad GX4000 + %ROMPATH%/gx4000 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + gx4000 + gx4000 + + + intellivision + Mattel Electronics Intellivision + %ROMPATH%/intellivision + .int .INT .bin .BIN .rom .ROM .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/freeintv_libretro.so %ROM% + intellivision + intellivision + + + kodi + Kodi home theatre software + %ROMPATH%/kodi + .sh .csh + bash %ROM% + pc + kodi + + + lutris + Lutris open gaming platform + %ROMPATH%/lutris + .sh .csh + bash %ROM% + pc + lutris + + + lutro + Lutro game engine + %ROMPATH%/lutro + .lua .LUA .lutro .LUTRO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/lutro_libretro.so %ROM% + lutro + lutro + + + macintosh + Apple Macintosh + %ROMPATH%/macintosh + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + macintosh + macintosh + + + mame + Multiple Arcade Machine Emulator + %ROMPATH%/mame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mame2016_libretro.so %ROM% + arcade + mame + + + mame-advmame + AdvanceMAME + %ROMPATH%/mame-advmame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + arcade + mame-advmame + + + mame-libretro + Multiple Arcade Machine Emulator + %ROMPATH%/mame-libretro + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mame_libretro.so %ROM% + arcade + mame-libretro + + + mame-mame4all + MAME4ALL + %ROMPATH%/mame-advmame + .chd .cue .CUE .CHD .cmd .CMD .fba .FBA .iso .ISO .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + arcade + mame-mame4all + + + mastersystem + Sega Master System + %ROMPATH%/mastersystem + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + mastersystem + mastersystem + + + megacd + Sega Mega-CD + %ROMPATH%/megacd + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + megacd + + + megacdjp + Sega Mega-CD + %ROMPATH%/megacdjp + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + megacdjp + + + megadrive + Sega Mega Drive + %ROMPATH%/megadrive + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + megadrive, genesis + megadrive + + + mess + Multi Emulator Super System + %ROMPATH%/mess + .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mess2015_libretro.so %ROM% + mess + mess + + + moonlight + Moonlight game streaming + %ROMPATH%/moonlight + .moonlight .MOONLIGHT .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + moonlight + moonlight + + + msx + MSX + %ROMPATH%/msx + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx + + + msx1 + MSX1 + %ROMPATH%/msx1 + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx1 + + + msx2 + MSX2 + %ROMPATH%/msx2 + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + msx + msx2 + + + n64 + Nintendo 64 + %ROMPATH%/n64 + .n64 .N64 .v64 .V64 .z64 .Z64 .bin .BIN .u1 .U1 .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mupen64plus_next_libretro.so %ROM% + n64 + n64 + + + naomi + Sega NAOMI + %ROMPATH%/naomi + .chd .CHD .cdi .CDI .iso .ISO .elf .ELF .bin .BIN .cue .CUE .gdi .GDI .lst .LST .dat .DAT .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/flycast_libretro.so %ROM% + naomi + naomi + + + nds + Nintendo DS + %ROMPATH%/nds + .nds .NDS .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/melonds_libretro.so %ROM% + nds + nds + + + neogeo + Neo Geo + %ROMPATH%/neogeo + .chd .CHD .cue .CUE .iso .ISO .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fbneo_libretro.so %ROM% + neogeo + neogeo + + + neogeocd + Neo Geo CD + %ROMPATH%/neogeocd + .chd .CHD .cue .CUE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/neocd_libretro.so %ROM% + neogeocd + neogeocd + + + nes + Nintendo Entertainment System + %ROMPATH%/nes + .nes .NES .unf .UNF .unif .UNIF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fceumm_libretro.so %ROM% + nes + nes + + + ngp + Neo Geo Pocket + %ROMPATH%/ngp + .ngp .NGP .ngc .NGC .ngpc .NGPC .npc .NPC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_ngp_libretro.so %ROM% + ngp + ngp + + + ngpc + Neo Geo Pocket Color + %ROMPATH%/ngpc + .ngp .NGP .ngc .NGC .ngpc .NGPC .npc .NPC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_ngp_libretro.so %ROM% + ngpc + ngpc + + + odyssey2 + Magnavox Odyssey2 + %ROMPATH%/odyssey2 + .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/o2em_libretro.so %ROM% + odyssey2 + odyssey2 + + + openbor + OpenBOR game engine + %ROMPATH%/openbor + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + openbor + openbor + + + oric + Tangerine Computer Systems Oric + %ROMPATH%/oric + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + oric + oric + + + palm + Palm OS + %ROMPATH%/palm + .prc .PRC .pqa .PQA .img .IMG .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mu_libretro.so %ROM% + palm + palm + + + pc + IBM PC + %ROMPATH%/pc + .bat .BAT .com .COM .exe .EXE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dosbox_core_libretro.so %ROM% + pc + pc + + + pcengine + NEC PC Engine + %ROMPATH%/pcengine + .pce .PCE .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_fast_libretro.so %ROM% + pcengine + pcengine + + + pcenginecd + NEC PC Engine CD + %ROMPATH%/pcenginecd + .pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_libretro.so %ROM% + pcenginecd + pcenginecd + + + pcfx + NEC PC-FX + %ROMPATH%/pcfx + .cue CUE .ccd .CCD .toc .TOC .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pcfx_libretro.so %ROM% + pcfx + pcfx + + + pokemini + Nintendo Pokémon Mini + %ROMPATH%/pokemini + .min .MIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/pokemini_libretro.so %ROM% + pokemini + pokemini + + + ports + Ports + %ROMPATH%/ports + .sh .csh + bash %ROM% + pc + ports + + + ps2 + Sony PlayStation 2 + %ROMPATH%/ps2 + .iso .ISO .isz .ISZ .cso .CSO .bin .BIN .elf .ELF .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/play_libretro.so %ROM% + ps2 + ps2 + + + psp + PlayStation Portable + %ROMPATH%/psp + .elf .ELF .iso .ISO .cso .CSO .prx .PRX .pbp .PBP .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/ppsspp_libretro.so %ROM% + psp + psp + + + psvita + PlayStation Vita + %ROMPATH%/psp + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + psvita + psvita + + + psx + Sony PlayStation 1 + %ROMPATH%/psx + .cue .CUE .toc .TOC .m3u .M3U .ccd .CCD .exe .EXE .pbp .PBP .chd .CHD .cbn .CBN .img .IMG .iso .ISO .mdf .MDF .z .Z .znx .ZNX .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_psx_libretro.so %ROM% + psx + psx + + + residualvm + ResidualVM game engine + %ROMPATH%/residualvm + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + residualvm + residualvm + + + samcoupe + SAM Coupé + %ROMPATH%/samcoupe + .dsk .DSK .mgt .MGT .sbt .SBT .sad .SAD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/simcp_libretro.so %ROM% + samcoupe + samcoupe + + + satellaview + Nintendo Satellaview + %ROMPATH%/satellaview + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + satellaview + satellaview + + + saturn + Sega Saturn + %ROMPATH%/saturn + .ccd .CCD .chd .CHD .cue .CUE .toc .TOC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_saturn_libretro.so %ROM% + saturn + saturn + + + scummvm + ScummVM game engine + %ROMPATH%/scummvm + .scummvm .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/scummvm_libretro.so %ROM% + scummvm + scummvm + + + sega32x + Sega Mega Drive 32X + %ROMPATH%/sega32x + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32x + + + sega32xjp + Sega Super 32X + %ROMPATH%/sega32xjp + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32xjp + + + sega32xna + Sega Genesis 32X + %ROMPATH%/sega32xna + .bin .BIN .gen .GEN .smd .SMD .md .MD .32x .32X .cue .CUE .iso .ISO .sms .SMS .68k .68K .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/picodrive_libretro.so %ROM% + sega32x + sega32xna + + + segacd + Sega CD + %ROMPATH%/segacd + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + segacd + segacd + + + sg-1000 + Sega SG-1000 + %ROMPATH%/sg-1000 + .mdx .MDX .md .MD .smd .SMD .gen .GEN .bin .BIN .cue .CUE .iso .ISO .sms .SMS .gg .GG .sg .SG .68k .68K .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/genesis_plus_gx_libretro.so %ROM% + sg-1000 + sg1000 + + + snes + Nintendo SNES (Super Nintendo) + %ROMPATH%/snes + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + snes + snes + + + snesna + Nintendo SNES (Super Nintendo) + %ROMPATH%/snesna + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + snes + snesna + + + solarus + Solarus game engine + %ROMPATH%/solarus + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + solarus + solarus + + + spectravideo + Spectravideo + %ROMPATH%/spectravideo + .rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/bluemsx_libretro.so %ROM% + spectravideo + spectravideo + + + steam + Valve Steam + %ROMPATH%/steam + .sh .csh + bash %ROM% + pc + steam + + + stratagus + Stratagus game engine + %ROMPATH%/stratagus + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + stratagus + stratagus + + + sufami + Bandai SuFami Turbo + %ROMPATH%/sufami + .smc .SMC .sfc .SFC .swc .SWC .fig .FIG .bs .BS .bin .BIN .mgd .MGD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/snes9x_libretro.so %ROM% + sufami + sufami + + + supergrafx + NEC SuperGrafx + %ROMPATH%/supergrafx + .pce .PCE .sgx .SGX .cue .CUE .ccd .CCD .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_supergrafx_libretro.so %ROM% + supergrafx + supergrafx + + + thomson + Thomson TO/MO series + %ROMPATH%/thomson + .fd .FD .sap .SAP .k7 .K7 .m7 .M7 .m5 .M5 .rom .ROM .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/theodore_libretro.so %ROM% + thomson + thomson + + + tg16 + NEC TurboGrafx-16 + %ROMPATH%/tg16 + .pce .PCE .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_fast_libretro.so %ROM% + pcengine + tg16 + + + tg-cd + NEC TurboGrafx-CD + %ROMPATH%/tg-cd + .pce .PCE .cue .CUE .ccd .CCD .iso .ISO .img .IMG .bin .BIN .chd .CHD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_pce_libretro.so %ROM% + pcenginecd + tg-cd + + + ti99 + Texas Instruments TI-99 + %ROMPATH%/ti99 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + ti99 + ti99 + + + trs-80 + Tandy TRS-80 + %ROMPATH%/trs-80 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + trs-80 + trs-80 + + + uzebox + Uzebox + %ROMPATH%/uzebox + .uze .UZE .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/uzem_libretro.so %ROM% + uzebox + uzebox + + + vectrex + Vectrex + %ROMPATH%/vectrex + .bin .BIN .vec .VEC .gam .GAM .vc .VC .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/vecx_libretro.so %ROM% + vectrex + vectrex + + + videopac + Philips Videopac G7000 (Magnavox Odyssey2) + %ROMPATH%/videopac + .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/o2em_libretro.so %ROM% + videopac + videopac + + + virtualboy + Nintendo Virtual Boy + %ROMPATH%/virtualboy + .vb .VB .vboy .VBOY .bin .BIN .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_vb_libretro.so %ROM% + virtualboy + virtualboy + + + wii + Nintendo Wii + %ROMPATH%/wii + .gcm .GCM .iso .ISO .wbfs .WBFS .ciso .CISO .gcz .GCZ .elf .ELF .dol .DOL .dff .DFF .tgc .TGC .wad .WAD .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/dolphin_libretro.so %ROM% + wii + wii + + + wiiu + Nintendo Wii U + %ROMPATH%/wiiu + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + wiiu + wiiu + + + wonderswan + Bandai WonderSwan + %ROMPATH%/wonderswan + .ws .WS .pc2 .PC2 .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_wswan_libretro.so %ROM% + wonderswan + wonderswan + + + wonderswancolor + Bandai WonderSwan Color + %ROMPATH%/wonderswancolor + .ws .WS .wsc .WSC .pc2 .PC2 .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/mednafen_wswan_libretro.so %ROM% + wonderswancolor + wonderswancolor + + + x68000 + Sharp X68000 + %ROMPATH%/x68000 + .dim .DIM .img .IMG .d88 .D88 .88d .88D .hdm .HDM .dup .DUP .2hd .2HD .xdf .XDF .hdf .HDF .cmd .CMD .m3u .M3U .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/px68k_libretro.so %ROM% + x68000 + x68000 + + + xbox + Microsoft Xbox + %ROMPATH%/xbox + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + xbox + xbox + + + xbox360 + Microsoft Xbox 360 + %ROMPATH%/xbox360 + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + xbox360 + xbox360 + + + zmachine + Infocom Z-machine + %ROMPATH%/zmachine + .7z .7Z .zip .ZIP + PLACEHOLDER %ROM% + zmachine + zmachine + + + zx81 + Sinclair ZX81 + %ROMPATH%/zx81 + .tzx .TZX .p .P .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/81_libretro.so %ROM% + zx81 + zx81 + + + zxspectrum + Sinclair ZX Spectrum + %ROMPATH%/zxspectrum + .tzx .TZX .tap .TAP .z80 .Z80 .rzx .RZX .scl .SCL .trd .TRD .sh .SH .sna .SNA .szx .SZX .udi .UDI .mgt .MGT .img .IMG .dsk .DSK .gz .GZ .7z .7Z .zip .ZIP + retroarch -L /usr/local/lib/libretro/fuse_libretro.so %ROM% + zxspectrum + zxspectrum + + diff --git a/resources/templates/es_systems.cfg_unix b/resources/templates/es_systems.cfg_unix index 84335830d..4ccf012da 100644 --- a/resources/templates/es_systems.cfg_unix +++ b/resources/templates/es_systems.cfg_unix @@ -1,5 +1,5 @@ - + 3do diff --git a/resources/templates/es_systems.cfg_windows b/resources/templates/es_systems.cfg_windows index 270353453..3151d45d7 100644 --- a/resources/templates/es_systems.cfg_windows +++ b/resources/templates/es_systems.cfg_windows @@ -1,5 +1,5 @@ - + 3do