├── .emulationstation ├── systems │ ├── cemu │ │ └── .gitignore │ ├── reicast │ │ ├── required DLL.txt │ │ └── data │ │ │ └── Put dc_boot here.txt │ ├── nulldc │ │ └── data │ │ │ └── Put dc_boot here.txt │ ├── Read Me.txt │ ├── love │ │ └── .gitignore │ ├── dolphin │ │ └── .gitignore │ ├── dosbox │ │ └── .gitignore │ ├── epsxe │ │ └── .gitignore │ ├── pcsx2 │ │ └── .gitignore │ ├── ppsspp │ │ └── .gitignore │ ├── retroarch │ │ └── .gitignore │ ├── scummvm │ │ └── .gitignore │ └── winvice │ │ └── .gitignore ├── bios │ └── place bios files here.txt ├── roms │ ├── ports │ │ ├── doom │ │ │ └── wads here.txt │ │ ├── eduke32 │ │ │ └── eduke32 and grp.txt │ │ ├── quake │ │ │ └── id1 │ │ │ │ └── place pak file here.txt │ │ ├── smw │ │ │ └── Read Me.txt │ │ ├── eduke32.bat │ │ ├── smw.bat │ │ ├── cavestory │ │ │ └── .gitignore │ │ ├── dinothawr │ │ │ └── .gitignore │ │ ├── doom.bat │ │ ├── cavestory.bat │ │ ├── dinothawr.bat │ │ └── quake.bat │ ├── pc │ │ └── readme.txt │ ├── options │ │ └── retroarch config.bat │ ├── love │ │ └── readme.txt │ ├── wii │ │ └── readme.txt │ ├── gc │ │ └── readme.txt │ ├── gw │ │ └── readme.txt │ ├── wiiu │ │ └── readme.txt │ ├── atari2600 │ │ └── readme.txt │ ├── nds │ │ └── readme.txt │ ├── ngp │ │ └── readme.txt │ ├── vectrex │ │ └── readme.txt │ ├── c64 │ │ └── readme.txt │ ├── dreamcast │ │ └── readme.txt │ ├── virtualboy │ │ └── readme.txt │ ├── atarijaguar │ │ └── readme.txt │ ├── gb │ │ └── readme.txt │ ├── n64 │ │ └── readme.txt │ ├── sg-1000 │ │ └── readme.txt │ ├── wonderswan │ │ └── readme.txt │ ├── 3do │ │ └── readme.txt │ ├── gamegear │ │ └── readme.txt │ ├── ngpc │ │ └── readme.txt │ ├── sega32x │ │ └── readme.txt │ ├── atarist │ │ └── readme.txt │ ├── gbc │ │ └── readme.txt │ ├── pcfx │ │ └── readme.txt │ ├── wonderswancolor │ │ └── readme.txt │ ├── saturn │ │ └── readme.txt │ ├── videopac │ │ └── readme.txt │ ├── fds │ │ └── readme.txt │ ├── mastersystem │ │ └── readme.txt │ ├── genesis │ │ └── readme.txt │ ├── zxspectrum │ │ └── readme.txt │ ├── megadrive │ │ └── readme.txt │ ├── nes │ │ └── readme.txt │ ├── msx │ │ └── readme.txt │ ├── pcengine │ │ └── readme.txt │ ├── atarilynx │ │ └── readme.txt │ ├── psx │ │ └── readme.txt │ ├── ps2 │ │ └── readme.txt │ ├── gba │ │ └── readme.txt │ ├── amiga │ │ └── readme.txt │ ├── psp │ │ └── readme.txt │ ├── fba │ │ └── readme.txt │ ├── atari7800 │ │ └── readme.txt │ ├── segacd │ │ └── readme.txt │ ├── scummvm │ │ └── readme.txt │ ├── mame │ │ └── readme.txt │ └── snes │ │ └── readme.txt └── es_systems.cfg ├── Launch Portable (Fullscreen).bat ├── Launch Portable (Windowed).bat ├── docs └── Portable_Game_Station_Banner.png ├── README.md ├── .gitmodules └── LICENSE /.emulationstation/systems/cemu/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.emulationstation/bios/place bios files here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.emulationstation/roms/ports/doom/wads here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.emulationstation/roms/ports/eduke32/eduke32 and grp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.emulationstation/roms/ports/quake/id1/place pak file here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Launch Portable (Fullscreen).bat: -------------------------------------------------------------------------------- 1 | set HOME=%~dp0 2 | emulationstation.exe -------------------------------------------------------------------------------- /.emulationstation/roms/pc/readme.txt: -------------------------------------------------------------------------------- 1 | Place your batch scripts to start PC games here -------------------------------------------------------------------------------- /.emulationstation/systems/reicast/required DLL.txt: -------------------------------------------------------------------------------- 1 | msvcp120d 2 | msvcr120d 3 | vcomp120d -------------------------------------------------------------------------------- /.emulationstation/roms/ports/smw/Read Me.txt: -------------------------------------------------------------------------------- 1 | Download missing DLLs MSVCR71.dll and MSVCP71.dll -------------------------------------------------------------------------------- /.emulationstation/roms/ports/eduke32.bat: -------------------------------------------------------------------------------- 1 | cd .emulationstation\roms\ports\eduke32 2 | .\eduke32.exe -------------------------------------------------------------------------------- /.emulationstation/roms/ports/smw.bat: -------------------------------------------------------------------------------- 1 | cd .emulationstation\roms\ports\smw 2 | .\SuperMarioWar.exe -------------------------------------------------------------------------------- /.emulationstation/roms/options/retroarch config.bat: -------------------------------------------------------------------------------- 1 | .emulationstation\systems\retroarch\retroarch.exe -------------------------------------------------------------------------------- /Launch Portable (Windowed).bat: -------------------------------------------------------------------------------- 1 | set HOME=%~dp0 2 | emulationstation.exe --windowed --resolution 1280 720 -------------------------------------------------------------------------------- /.emulationstation/systems/nulldc/data/Put dc_boot here.txt: -------------------------------------------------------------------------------- 1 | put dc_boot.bin and dc_flash.bin in this directory -------------------------------------------------------------------------------- /.emulationstation/systems/Read Me.txt: -------------------------------------------------------------------------------- 1 | extract designated emulators in the correct folders from the root directory. -------------------------------------------------------------------------------- /.emulationstation/systems/reicast/data/Put dc_boot here.txt: -------------------------------------------------------------------------------- 1 | put dc_boot.bin and dc_flash.bin in this directory -------------------------------------------------------------------------------- /.emulationstation/roms/love/readme.txt: -------------------------------------------------------------------------------- 1 | Place your LÖVE games here 2 | 3 | Emulator: LÖVE 4 | 5 | ROM Extensions: .love -------------------------------------------------------------------------------- /.emulationstation/roms/wii/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Wii ROMs here 2 | 3 | Emulator: Dolphin 4 | 5 | ROM Extensions: iso 6 | -------------------------------------------------------------------------------- /.emulationstation/systems/love/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/dolphin/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/dosbox/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/epsxe/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/pcsx2/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/ppsspp/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/retroarch/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/scummvm/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/systems/winvice/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/roms/gc/readme.txt: -------------------------------------------------------------------------------- 1 | Place your GameCube ROMs here 2 | 3 | Emulator: Dolphin 4 | 5 | ROM Extensions: iso 6 | 7 | -------------------------------------------------------------------------------- /.emulationstation/roms/ports/cavestory/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/roms/ports/dinothawr/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore -------------------------------------------------------------------------------- /.emulationstation/roms/gw/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Game & Watch games here 2 | 3 | Emulator: gw_libretro.dll 4 | 5 | ROM Extensions: .mgw -------------------------------------------------------------------------------- /docs/Portable_Game_Station_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerbFargus/Portable-Game-Station/HEAD/docs/Portable_Game_Station_Banner.png -------------------------------------------------------------------------------- /.emulationstation/roms/wiiu/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Wii U ROMs here 2 | 3 | Emulator: Cemu 4 | 5 | ROM Extensions: .wud .wux .lnk .WUD .WUX .LNK 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/atari2600/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Atari 2600 ROMs here 2 | 3 | Emulator: stella_libretro.dll 4 | 5 | ROM Extensions: .a26 .bin .rom -------------------------------------------------------------------------------- /.emulationstation/roms/nds/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Nintendo DS ROMs here 2 | 3 | Emulator: desmume_libretro.dll 4 | 5 | ROM Extensions: .nds 6 | 7 | -------------------------------------------------------------------------------- /.emulationstation/roms/ngp/readme.txt: -------------------------------------------------------------------------------- 1 | Place your NeoGeo Pocket ROMs here 2 | 3 | Emulators: mednafen_ngp_libretro.dll 4 | 5 | ROM Extensions: .ngp .zip -------------------------------------------------------------------------------- /.emulationstation/roms/vectrex/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Vectrex ROMs here 2 | 3 | Emulator: vecx_libretro.dll 4 | 5 | ROM Extensions:.bin .gam .vec 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/c64/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Commodore 64 ROMs here 2 | 3 | Emulator: WinVice 4 | 5 | ROM Extensions: .crt .d64 .g64 .t64 .tap .x64 .zip -------------------------------------------------------------------------------- /.emulationstation/roms/dreamcast/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Dreamcast ROMs here 2 | 3 | Emulator: NullDC 4 | 5 | ROM Extensions: .bin .cdi .cue .gdi .mdf .mds -------------------------------------------------------------------------------- /.emulationstation/roms/virtualboy/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Virtual Boy ROMs here 2 | 3 | Emulator: mednafen_vb_libretro.dll 4 | 5 | ROM Extensions:.vb .zip 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/atarijaguar/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Atari Jaguar ROMs here 2 | 3 | Emulator: virtualjaguar_libretro.dll 4 | 5 | ROM Extensions: .j64 .jag -------------------------------------------------------------------------------- /.emulationstation/roms/gb/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Game Boy ROMs here 2 | 3 | Emulators: gambatte_libretro.dll, tgbdual_libretro.dll 4 | 5 | ROM Extensions: .gb .zip -------------------------------------------------------------------------------- /.emulationstation/roms/n64/readme.txt: -------------------------------------------------------------------------------- 1 | Place your N64 ROMs here 2 | 3 | Emulator: mupen64plus_libretro.dll 4 | 5 | ROM Extensions: .n64 .v64 .z64 .zip 6 | 7 | -------------------------------------------------------------------------------- /.emulationstation/roms/sg-1000/readme.txt: -------------------------------------------------------------------------------- 1 | Place your SG-1000 ROMs here 2 | 3 | Emulator: genesis_plus_gx_libretro.dll 4 | 5 | ROM Extensions:.bin .sg .zip 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/wonderswan/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Wonderswan ROMs here 2 | 3 | Emulator: mednafen_wswan_libretro.dll 4 | 5 | ROM Extensions: .ws .zip 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/3do/readme.txt: -------------------------------------------------------------------------------- 1 | Place your 3do ROMs here 2 | 3 | Emulator: 4do_libretro.dll 4 | 5 | ROM Extensions: .iso 6 | 7 | BIOS Required: panafz10.bin -------------------------------------------------------------------------------- /.emulationstation/roms/gamegear/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega Game Gear ROMs here 2 | 3 | Emulator: genesis_plus_gx_libretro.dll 4 | 5 | ROM Extensions: .bin .gg .zip -------------------------------------------------------------------------------- /.emulationstation/roms/ngpc/readme.txt: -------------------------------------------------------------------------------- 1 | Place your NeoGeo Pocket Color ROMs here 2 | 3 | Emulators: mednafen_ngp_libretro.dll 4 | 5 | ROM Extensions: .ngc .zip 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/sega32x/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega 32X ROMs here 2 | 3 | Emulator: picodrive_libretro.dll 4 | 5 | ROM Extensions: .32x .bin .md .smd .zip 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/atarist/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Atari ST ROMs here 2 | 3 | Emulators: hatari_libretro.dll 4 | 5 | ROM Extensions: .st .stx .img .rom .raw .ipf .ctr -------------------------------------------------------------------------------- /.emulationstation/roms/gbc/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Game Boy Color ROMs here 2 | 3 | Emulators: gambatte_libretro.dll, tgbdual_libretro.dll 4 | 5 | ROM Extensions: .gbc .zip -------------------------------------------------------------------------------- /.emulationstation/roms/pcfx/readme.txt: -------------------------------------------------------------------------------- 1 | Place your PC-FX ROMs here 2 | 3 | Emulator: mednafen_pcfx_libretro.dll 4 | 5 | ROM Extensions: .cue 6 | 7 | BIOS: pcfx.bios 8 | -------------------------------------------------------------------------------- /.emulationstation/roms/wonderswancolor/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Wonderswan Color ROMs here 2 | 3 | Emulator: mednafen_wswan_libretro.dll 4 | 5 | ROM Extensions: .wsc .zip 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/saturn/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega Saturn ROMs here 2 | 3 | Emulator: yabause_libretro.dll 4 | 5 | ROM Extensions: .iso 6 | 7 | BIOS: saturn_bios.bin 8 | -------------------------------------------------------------------------------- /.emulationstation/roms/videopac/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Odyssey / Videopac ROMs here 2 | 3 | Emulator: o2em_libretro.dll 4 | 5 | ROM Extensions:.bin 6 | 7 | BIOS: o2rom.bin 8 | -------------------------------------------------------------------------------- /.emulationstation/roms/fds/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Famicom Disk System ROMs here 2 | 3 | Emulators: nestopia_libretro.dll 4 | 5 | ROM Extensions: .fds .zip 6 | 7 | BIOS Required: disksys.rom -------------------------------------------------------------------------------- /.emulationstation/roms/mastersystem/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega Master System ROMs here 2 | 3 | Emulators: genesis_plus_gx_libretro.dll, picodrive_libretro.dll 4 | 5 | ROM Extensions: .bin .sms .zip -------------------------------------------------------------------------------- /.emulationstation/roms/ports/doom.bat: -------------------------------------------------------------------------------- 1 | .emulationstation\systems\retroarch\retroarch.exe -L .emulationstation\systems\retroarch\cores\prboom_libretro.dll .emulationstation\roms\ports\doom\doom.wad -------------------------------------------------------------------------------- /.emulationstation/roms/genesis/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega Genesis ROMs here 2 | 3 | Emulators: genesis_plus_gx_libretro.dll, picodrive_libretro.dll 4 | 5 | ROM Extensions: .bin .gen .md .sg .smd .zip -------------------------------------------------------------------------------- /.emulationstation/roms/zxspectrum/readme.txt: -------------------------------------------------------------------------------- 1 | Place your ZXSpectrum ROMs here 2 | 3 | Emulator: fuse_libretro.dll 4 | 5 | ROM Extensions: sna .szx .z80 .tap .tzx .gz .udi .mgt .img .trd .scl .dsk 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/megadrive/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega Mega Drive ROMs here 2 | 3 | Emulators: genesis_plus_gx_libretro.dll, picodrive_libretro.dll 4 | 5 | ROM Extensions: .bin .gen .md .sg .smd .zip -------------------------------------------------------------------------------- /.emulationstation/roms/nes/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Nintendo Entertainment Systems here 2 | 3 | Emulators: nestopia_libretro.dll, bnes_libretro.dll, quicknes_libretro.dll 4 | 5 | ROM Extensions: .nes .zip 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/ports/cavestory.bat: -------------------------------------------------------------------------------- 1 | .emulationstation\systems\retroarch\retroarch.exe -L .emulationstation\systems\retroarch\cores\nxengine_libretro.dll .emulationstation\roms\ports\cavestory\Doukutsu.exe -------------------------------------------------------------------------------- /.emulationstation/roms/ports/dinothawr.bat: -------------------------------------------------------------------------------- 1 | .emulationstation\systems\retroarch\retroarch.exe -L .emulationstation\systems\retroarch\cores\dinothawr_libretro.dll .emulationstation\roms\ports\dinothawr\dinothawr.game -------------------------------------------------------------------------------- /.emulationstation/roms/msx/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega Master System ROMs here 2 | 3 | Emulators: fmsx_libretro.dll, bluemsx_libretro.dll 4 | 5 | ROM Extensions: .col .dsk .mx1 .mx2 .rom 6 | 7 | BIOS: MSX.ROM DISK.ROM 8 | 9 | -------------------------------------------------------------------------------- /.emulationstation/roms/pcengine/readme.txt: -------------------------------------------------------------------------------- 1 | Place your PCEngine ROMs here 2 | 3 | Emulators: mednafen_pce_fast_libretro.dll, mednafen_supergrafx_libretro.dll 4 | 5 | ROM Extensions: .pce .cue .zip 6 | 7 | BIOS: syscard3.pce 8 | -------------------------------------------------------------------------------- /.emulationstation/roms/atarilynx/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Atari Lynx ROMs here 2 | 3 | Emulators: handy_libretro.dll, mednafen_lynx_libretro.dll 4 | 5 | ROM Extensions: .lnx 6 | 7 | BIOS: lynxboot.img (only needed with mednafen_lynx_libretro) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![PortableGameStation](docs/Portable_Game_Station_Banner.png "PortableGameStation") 2 | 3 | *** 4 | 5 | A set of configurations for EmulationStation and RetroArch on Windows that can be installed on a USB or portable hard drive. 6 | -------------------------------------------------------------------------------- /.emulationstation/roms/ports/quake.bat: -------------------------------------------------------------------------------- 1 | .emulationstation\systems\retroarch\retroarch.exe -L .emulationstation\systems\retroarch\cores\tyrquake_libretro.dll .emulationstation\roms\ports\quake\id1\pak0.pak .emulationstation\roms\ports\quake\id1\pak1.pak -------------------------------------------------------------------------------- /.emulationstation/roms/psx/readme.txt: -------------------------------------------------------------------------------- 1 | Place your PlayStation 1 ROMs here 2 | 3 | Emulator: mednafen_psx_libretro.dll, mednafen_psx_hw_libretro.dll, epsxe 4 | 5 | ROM Extensions: .cue .iso .pbp 6 | 7 | BIOS: SCPH1001.BIN, scph5500.bin, scph5501.bin, scph5502.bin 8 | -------------------------------------------------------------------------------- /.emulationstation/roms/ps2/readme.txt: -------------------------------------------------------------------------------- 1 | Place your PlayStation 2 ROMs here 2 | 3 | Emulator: pcsx2 4 | 5 | ROM Extensions: .bin .cue .iso .mds 6 | 7 | BIOS: scph10000.bin scph10000.MEC scph10000.NVM 8 | 9 | as this is a standalone emulator it requires more manual configurations. -------------------------------------------------------------------------------- /.emulationstation/roms/gba/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Game Boy Advance ROMs here 2 | 3 | Emulators: gpsp_libretro.dll, mednafen_gba_libretro.dll, meteor_libretro.dll, mgba_libretro.dll, vba_next_libretro.dll, vbam_libretro.dll 4 | 5 | ROM Extensions: .gba .zip 6 | 7 | BIOS Required: gba_bios.bin -------------------------------------------------------------------------------- /.emulationstation/roms/amiga/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Amiga ROMs here 2 | 3 | Emulator: puae_libretro.dll 4 | 5 | ROM Extensions: .adf 6 | 7 | BIOS Required: kick13.rom, kick20.rom, kick31.rom 8 | 9 | note this core is buggy and you'll likely run into issues. best be finding a standlone emulator that works better -------------------------------------------------------------------------------- /.emulationstation/roms/psp/readme.txt: -------------------------------------------------------------------------------- 1 | Place your PSP ROMs here 2 | 3 | Emulators: PPSSPPWindows.exe ppsspp_libretro.dll 4 | 5 | ROM Extensions: .pce .cue .zip 6 | 7 | BIOS: note if using ppsspp_libretro you need to copy the assets from the standalone ppsspp (namely ppge_atlas.zim) into the system/ppsspp folder 8 | -------------------------------------------------------------------------------- /.emulationstation/roms/fba/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Final Burn Alpha ROMs here 2 | 3 | Emulators: fbalpha_libretro.dll, fbalpha2012_cps1_libretro.dll, fbalpha2012_cps2_libretro.dll, fbalpha2012_libretro.dll, fbalpha2012_neogeo_libretro.dll 4 | 5 | ROM Extensions: .zip 6 | 7 | BIOS Required: neogeo.zip (goes in the same folder as your roms) -------------------------------------------------------------------------------- /.emulationstation/roms/atari7800/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Atari 7800 ROMs here 2 | 3 | Emulator: prosystem_libretro.dll 4 | 5 | ROM Extensions: .a78 .bin 6 | 7 | BIOS Required: 7800 BIOS (U).rom 8 | 9 | Note the BIOS is optional if you want the Atari Logo at the beginning of games, otherwise you don't need it because the games work fine without it. -------------------------------------------------------------------------------- /.emulationstation/roms/segacd/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Sega CD ROMs here 2 | 3 | Emulator: genesis_plus_gx_libretro.dll, picodrive_libretro.dll 4 | 5 | ROM Extensions: .iso .cue 6 | 7 | BIOS: 8 | 9 | For picodrive_libretro.dll: us_scd1_9210.bin, eu_mcd1_9210.bin, jp_mcd1_9112.bin 10 | 11 | For genesis_plus_gx_libretro.dll: bios_CD_U.bin, bios_CD_E.bin, bios_CD_J.bin 12 | -------------------------------------------------------------------------------- /.emulationstation/roms/scummvm/readme.txt: -------------------------------------------------------------------------------- 1 | To get scummvm games to run from emulationstation you need to install scummvm and then create a batch script for each game e.g. 2 | 3 | Create a file title.bat: 4 | 5 | Pajama Sam 1 No Need to Hide When It's Dark Outside.bat 6 | 7 | Contents: 8 | 9 | pushd "%HOMEPATH%\.emulationstation\roms\scummvm\Pajama Sam 1 No Need to Hide When It's Dark Outside" 10 | %HOMEPATH%\.emulationstation\systems\scummvm\scummvm.exe -f "pajama-us" -------------------------------------------------------------------------------- /.emulationstation/roms/mame/readme.txt: -------------------------------------------------------------------------------- 1 | Place your MAME ROMs here 2 | 3 | Emulators: 4 | mame2000_libretro.dll (0.37b5 romset) 5 | mame2003_libretro.dll (0.78 romset) 6 | mame2010_libretro.dll (0.139 romset) 7 | mame2014_libretro.dll (0.159-ish romset) 8 | mame_libretro.dll (latest) 9 | 10 | ROM Extensions: .zip 11 | 12 | If you're having issues with your roms not working see the following guide on how to rebuild them proper with clrmamepro 13 | https://github.com/retropie/retropie-setup/wiki/Managing-ROMs 14 | 15 | -------------------------------------------------------------------------------- /.emulationstation/roms/snes/readme.txt: -------------------------------------------------------------------------------- 1 | Place your Super Nintendo Entertainment System ROMs here 2 | 3 | Emulators: 4 | 5 | bnes_libretro.dll 6 | bsnes_accuracy_libretro.dll 7 | bsnes_balanced_libretro.dll 8 | bsnes_cplusplus98_libretro.dll 9 | bsnes_mercury_accuracy_libretro.dll 10 | bsnes_mercury_balanced_libretro.dll 11 | bsnes_mercury_performance_libretro.dll 12 | bsnes_performance_libretro.dll 13 | mednafen_snes_libretro.dll 14 | snes9x2005_libretro.dll 15 | snes9x2010_libretro.dll 16 | 17 | ROM Extensions:.sfc .smc .zip 18 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule ".emulationstation/themes/carbon"] 2 | path = .emulationstation/themes/carbon 3 | url = https://github.com/RetroPie/es-theme-carbon.git 4 | [submodule ".emulationstation/themes/carbon-nometa"] 5 | path = .emulationstation/themes/carbon-nometa 6 | url = https://github.com/RetroPie/es-theme-carbon-nometa.git 7 | [submodule ".emulationstation/themes/carbon-centered"] 8 | path = .emulationstation/themes/carbon-centered 9 | url = https://github.com/RetroPie/es-theme-carbon-centered.git 10 | [submodule ".emulationstation/themes/pixel"] 11 | path = .emulationstation/themes/pixel 12 | url = https://github.com/RetroPie/es-theme-pixel.git 13 | [submodule ".emulationstation/themes/simple"] 14 | path = .emulationstation/themes/simple 15 | url = https://github.com/RetroPie/es-theme-simple.git 16 | [submodule ".emulationstation/themes/tronkyfran"] 17 | path = .emulationstation/themes/tronkyfran 18 | url = https://github.com/HerbFargus/es-theme-tronkyfran.git 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /.emulationstation/es_systems.cfg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 3do 8 | 3do 9 | ~\.emulationstation\roms\3do 10 | .iso .ISO 11 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\4do_libretro.dll "%ROM_RAW%" 12 | 3do 13 | 3do 14 | 15 | 16 | 17 | amiga 18 | Amiga 19 | ~\.emulationstation\roms\amiga 20 | .adf .ADF 21 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\puae_libretro.dll "%ROM_RAW%" 22 | amiga 23 | amiga 24 | 25 | 26 | 27 | atari2600 28 | Atari 2600 29 | ~\.emulationstation\roms\atari2600 30 | .a26 .bin .rom .A26 .BIN .ROM 31 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\stella_libretro.dll "%ROM_RAW%" 32 | atari2600 33 | atari2600 34 | 35 | 36 | 37 | atari7800 38 | Atari 7800 Prosystem 39 | ~\.emulationstation\roms\atari7800 40 | .a78 .bin .A78 .BIN 41 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\prosystem_libretro.dll "%ROM_RAW%" 42 | atari7800 43 | atari7800 44 | 45 | 46 | 47 | atarijaguar 48 | Atari Jaguar 49 | ~\.emulationstation\roms\atarijaguar 50 | .j64 .jag .J64 .JAG 51 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\virtualjaguar_libretro.dll "%ROM_RAW%" 52 | atarijaguar 53 | atarijaguar 54 | 55 | 56 | 57 | atarilynx 58 | Atari Lynx 59 | ~\.emulationstation\roms\atarilynx 60 | .lnx .LNX 61 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\handy_libretro.dll "%ROM_RAW%" 62 | atarilynx 63 | atarilynx 64 | 65 | 66 | 67 | atarist 68 | Atari ST, STE, Falcon 69 | ~\.emulationstation\roms\atarist 70 | .img .rom .st .stx .IMG .ROM .ST .STX 71 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\hatari_libretro.dll "%ROM_RAW%" 72 | atarist 73 | atarist 74 | 75 | 76 | 77 | c64 78 | Commodore 64 79 | ~\.emulationstation\roms\c64 80 | .crt .d64 .g64 .t64 .tap .x64 .zip .CRT .D64 .G64 .T64 .TAP .X64 .ZIP 81 | %HOME%\.emulationstation\systems\winvice\x64.exe "%ROM_RAW%" 82 | c64 83 | c64 84 | 85 | 86 | 87 | Dreamcast 88 | Sega Dreamcast 89 | ~\.emulationstation\roms\dreamcast 90 | .bin .cdi .cue .gdi .mdf .mds .BIN .CDI .CUE .GDI .MDF .MDS 91 | %HOME%\.emulationstation\systems\nulldc\nullDC.exe -config nullDC_GUI:Fullscreen=0 -config nullDC:Emulator.Autostart=1 -config ImageReader:LoadDefaultImage=1 -config ImageReader:DefaultImage="%ROM_RAW%" 92 | dreamcast 93 | dreamcast 94 | 95 | 96 | 97 | fba 98 | Final Burn Alpha 99 | ~\.emulationstation\roms\fba 100 | .fba .zip .FBA .ZIP 101 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\fbalpha_libretro.dll "%ROM_RAW%" 102 | arcade 103 | fba 104 | 105 | 106 | 107 | fds 108 | Famicom Disk System 109 | ~\.emulationstation\roms\fds 110 | .fds .zip .FDS .ZIP 111 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\nestopia_libretro.dll "%ROM_RAW%" 112 | fds 113 | fds 114 | 115 | 116 | 117 | gamegear 118 | Sega Gamegear 119 | ~\.emulationstation\roms\gamegear 120 | .bin .gg .zip .BIN .GG .ZIP 121 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\genesis_plus_gx_libretro.dll "%ROM_RAW%" 122 | gamegear 123 | gamegear 124 | 125 | 126 | 127 | gb 128 | Game Boy 129 | ~\.emulationstation\roms\gb 130 | .gb .zip .GB .ZIP 131 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\gambatte_libretro.dll "%ROM_RAW%" 132 | gb 133 | gb 134 | 135 | 136 | 137 | gba 138 | Game Boy Advance 139 | ~\.emulationstation\roms\gba 140 | .gba .zip .GBA .ZIP 141 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mgba_libretro.dll "%ROM_RAW%" 142 | gba 143 | gba 144 | 145 | 146 | 147 | gbc 148 | Game Boy Color 149 | ~\.emulationstation\roms\gbc 150 | .gbc .GBC .zip .ZIP 151 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\gambatte_libretro.dll "%ROM_RAW%" 152 | gbc 153 | gbc 154 | 155 | 156 | 157 | gc 158 | Nintendo GameCube 159 | ~\.emulationstation\roms\gc 160 | .iso .ISO .gcm .GCM 161 | %HOME%\.emulationstation\systems\dolphin\Dolphin.exe -e "%ROM_RAW%" 162 | gc 163 | gc 164 | 165 | 166 | 167 | genesis 168 | Sega Genesis 169 | ~\.emulationstation\roms\genesis 170 | .bin .gen .md .sg .smd .zip .BIN .GEN .MD .SG .SMD .ZIP 171 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\genesis_plus_gx_libretro.dll "%ROM_RAW%" 172 | genesis 173 | genesis 174 | 175 | 176 | 177 | gw 178 | Game and Watch 179 | ~\.emulationstation\roms\gw 180 | .mgw .MGW .zip .ZIP 181 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\gw_libretro.dll "%ROM_RAW%" 182 | gw 183 | gw 184 | 185 | 186 | 187 | love 188 | LÖVE 189 | ~\.emulationstation\roms\love 190 | .love .LOVE 191 | %HOME%\.emulationstation\systems\love\love.exe "%ROM_RAW%" 192 | love 193 | love 194 | 195 | 196 | 197 | mame 198 | MAME 199 | ~\.emulationstation\roms\mame 200 | .zip .ZIP 201 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mame2003_libretro.dll "%ROM_RAW%" 202 | arcade 203 | mame 204 | 205 | 206 | 207 | mastersystem 208 | Sega Master System 209 | ~\.emulationstation\roms\mastersystem 210 | .bin .sms .zip .BIN .SMS .ZIP 211 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\genesis_plus_gx_libretro.dll "%ROM_RAW%" 212 | mastersystem 213 | mastersystem 214 | 215 | 216 | 217 | megadrive 218 | Sega Mega Drive 219 | ~\.emulationstation\roms\megadrive 220 | .bin .gen .md .sg .smd .zip .BIN .GEN .MD .SG .SMD .ZIP 221 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\genesis_plus_gx_libretro.dll "%ROM_RAW%" 222 | megadrive 223 | megadrive 224 | 225 | 226 | 227 | msx 228 | MSX 229 | ~\.emulationstation\roms\msx 230 | .col .dsk .mx1 .mx2 .rom .COL .DSK .MX1 .MX2 .ROM 231 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\fmsx_libretro.dll "%ROM_RAW%" 232 | msx 233 | msx 234 | 235 | 236 | 237 | n64 238 | Nintendo 64 239 | ~\.emulationstation\roms\n64 240 | .n64 .v64 .z64 .zip .N64 .V64 .Z64 .ZIP 241 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mupen64plus_libretro.dll "%ROM_RAW%" 242 | n64 243 | n64 244 | 245 | 246 | 247 | nds 248 | Nintendo DS 249 | ~\.emulationstation\roms\nds 250 | .nds .zip .NDS .ZIP 251 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\desmume_libretro.dll "%ROM_RAW%" 252 | nds 253 | nds 254 | 255 | 256 | 257 | neogeo 258 | Neo Geo 259 | ~\.emulationstation\roms\neogeo 260 | .zip .ZIP 261 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\fba_libretro.dll "%ROM_RAW%" 262 | neogeo 263 | neogeo 264 | 265 | 266 | 267 | nes 268 | Nintendo Entertainment System 269 | ~\.emulationstation\roms\nes 270 | .nes .zip .NES .ZIP 271 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\nestopia_libretro.dll "%ROM_RAW%" 272 | nes 273 | nes 274 | 275 | 276 | 277 | ngp 278 | Neo Geo Pocket 279 | ~\.emulationstation\roms\ngp 280 | .ngp .ngc .zip .ZIP 281 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_ngp_libretro.dll "%ROM_RAW%" 282 | ngp 283 | ngp 284 | 285 | 286 | 287 | ngpc 288 | Neo Geo Pocket Color 289 | ~\.emulationstation\roms\ngpc 290 | .ngc .zip .ZIP 291 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_ngp_libretro.dll "%ROM_RAW%" 292 | ngpc 293 | ngpc 294 | 295 | 296 | 297 | pc 298 | PC (x86) 299 | ~\.emulationstation\roms\pc 300 | .bat .BAT 301 | "%ROM_RAW%" 302 | pc 303 | pc 304 | 305 | 306 | 307 | pcengine 308 | TurboGrafx 16 (PC Engine) 309 | ~\.emulationstation\roms\pcengine 310 | .cue .pce .zip .CUE .PCE .ZIP 311 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_pce_fast_libretro.dll "%ROM_RAW%" 312 | pcengine 313 | pcengine 314 | 315 | 316 | 317 | pcfx 318 | PC-FX 319 | ~\.emulationstation\roms\pcfx 320 | .cue .CUE 321 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_pcfx_libretro.dll "%ROM_RAW%" 322 | pcfx 323 | pcfx 324 | 325 | 326 | 337 | 338 | 339 | ps2 340 | Playstation 2 341 | ~\.emulationstation\roms\ps2 342 | .bin .cue .iso .mds .BIN .CUE .ISO .MDS 343 | %HOME%\.emulationstation\systems\pcsx2\pcsx2.exe "%ROM_RAW%" 344 | ps2 345 | ps2 346 | 347 | 348 | 349 | psp 350 | Playstation Portable 351 | ~\.emulationstation\roms\psp 352 | .cso .iso .CSO .ISO 353 | 356 | %HOME%\.emulationstation\systems\ppsspp\PPSSPPWindows.exe "%ROM_RAW%" 357 | psp 358 | psp 359 | 360 | 361 | 362 | psx 363 | Playstation 364 | ~\.emulationstation\roms\psx 365 | .cue .iso .pbp .CUE .ISO .PBP 366 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_psx_libretro.dll "%ROM_RAW%" 367 | 370 | psx 371 | psx 372 | 373 | 374 | 375 | saturn 376 | Sega Saturn 377 | ~\.emulationstation\roms\saturn 378 | .bin .iso .mds .BIN .ISO .MDF 379 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\yabause_libretro.dll "%ROM_RAW%" 380 | saturn 381 | saturn 382 | 383 | 384 | 385 | scummvm 386 | ScummVM 387 | ~\.emulationstation\roms\scummvm 388 | .bat .BAT 389 | "%ROM_RAW%" 390 | pc 391 | scummvm 392 | 393 | 394 | 395 | sega32x 396 | Sega 32x 397 | ~\.emulationstation\roms\sega32x 398 | .32x .bin .md .smd .zip .32X .BIN .MD .SMD .ZIP 399 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\picodrive_libretro.dll "%ROM_RAW%" 400 | sega32x 401 | sega32x 402 | 403 | 404 | 405 | segacd 406 | Sega CD 407 | ~\.emulationstation\roms\segacd 408 | .iso .cue .ISO .CUE 409 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\picodrive_libretro.dll "%ROM_RAW%" 410 | segacd 411 | segacd 412 | 413 | 414 | 415 | sg-1000 416 | Sega SG-1000 417 | ~\.emulationstation\roms\sg-1000 418 | .bin .sg .zip .BIN .SG .ZIP 419 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\genesis_plus_gx_libretro.dll "%ROM_RAW%" 420 | sg-1000 421 | sg-1000 422 | 423 | 424 | 425 | snes 426 | Super Nintendo Entertainment System 427 | ~\.emulationstation\roms\snes 428 | .sfc .smc .zip .SFC .SMC .ZIP 429 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\snes9x_libretro.dll "%ROM_RAW%" 430 | snes 431 | snes 432 | 433 | 434 | 445 | 446 | 447 | vectrex 448 | Vectrex 449 | ~\.emulationstation\roms\vectrex 450 | .bin .gam .vec .BIN .GAM .VEC 451 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\vecx_libretro.dll "%ROM_RAW%" 452 | vectrex 453 | vectrex 454 | 455 | 456 | 457 | videopac 458 | Odyssey 2 / Videopac 459 | ~\.emulationstation\roms\videopac 460 | .bin .BIN 461 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\o2em_libretro.dll "%ROM_RAW%" 462 | videopac 463 | videopac 464 | 465 | 466 | 467 | virtualboy 468 | Virtual Boy 469 | ~\.emulationstation\roms\virtualboy 470 | .vb .zip .VB .ZIP 471 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_vb_libretro.dll "%ROM_RAW%" 472 | virtualboy 473 | virtualboy 474 | 475 | 476 | 477 | wii 478 | Nintendo Wii 479 | ~\.emulationstation\roms\wii 480 | .iso .ISO 481 | "%HOME%\.emulationstation\systems\dolphin\dolphin.exe" -e "%ROM_RAW%" 482 | wii 483 | wii 484 | 485 | 486 | 487 | wiiu 488 | Nintendo Wii U 489 | ~\.emulationstation\roms\wiiu 490 | .wud .wux .lnk .WUD .WUX .LNK 491 | "%HOME%\.emulationstation\systems\cemu\Cemu.exe" -g "%ROM_RAW%" -f 492 | wiiu 493 | wiiu 494 | 495 | 496 | 497 | wonderswan 498 | Wonderswan 499 | ~\.emulationstation\roms\wonderswan 500 | .ws .zip .WS .ZIP 501 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_wswan_libretro.dll "%ROM_RAW%" 502 | wonderswan 503 | wonderswan 504 | 505 | 506 | 507 | wonderswancolor 508 | Wonderswan Color 509 | ~\.emulationstation\roms\wonderswancolor 510 | .wsc .zip .WSC .ZIP 511 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\mednafen_wswan_libretro.dll "%ROM_RAW%" 512 | wonderswancolor 513 | wonderswancolor 514 | 515 | 516 | 517 | zxspectrum 518 | ZX Spectrum 519 | ~\.emulationstation\roms\zxspectrum 520 | sna .szx .z80 .tap .tzx .gz .udi .mgt .img .trd .scl .dsk SNA .SZX .Z80 .TAP .TZX .GZ .UDI .MGT .IMG .TRD .SCL .DSK 521 | %HOME%\.emulationstation\systems\retroarch\retroarch.exe -L %HOME%\.emulationstation\systems\retroarch\cores\fuse_libretro.dll "%ROM_RAW%" 522 | zxspectrum 523 | zxspectrum 524 | 525 | 526 | 527 | --------------------------------------------------------------------------------