mirror of
https://github.com/libretro/libretro-super
synced 2025-04-16 23:42:59 +00:00
Add ChimeraSNES.
This commit is contained in:
parent
e0dc1de103
commit
7a18b01eb2
@ -16,6 +16,7 @@ include_core_mesens
|
||||
include_core_snes9x2002
|
||||
include_core_snes9x2005
|
||||
include_core_snes9x2005_plus
|
||||
include_core_chimerasnes
|
||||
include_core_snes9x2010
|
||||
include_core_snes9x
|
||||
include_core_bsnes
|
||||
|
32
dist/info/chimerasnes_libretro.info
vendored
Normal file
32
dist/info/chimerasnes_libretro.info
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
# Software Information
|
||||
display_name = "Nintendo - SNES / SFC (ChimeraSNES)"
|
||||
categories = "Emulator"
|
||||
authors = "Snes9x Team and various other contributors"
|
||||
corename = "ChimeraSNES"
|
||||
supported_extensions = "smc|fig|sfc|gd3|gd7|dx2|bsx|bs|swc|st"
|
||||
license = "Non-commercial"
|
||||
permissions = ""
|
||||
display_version = ""
|
||||
|
||||
# Hardware Information
|
||||
manufacturer = "Nintendo"
|
||||
systemname = "Super Nintendo Entertainment System"
|
||||
systemid = "super_nes"
|
||||
|
||||
# Libretro Features
|
||||
savestate = "true"
|
||||
savestate_features = "deterministic"
|
||||
cheats = "true"
|
||||
input_descriptors = "true"
|
||||
memory_descriptors = "true"
|
||||
libretro_saves = "true"
|
||||
core_options = "true"
|
||||
core_options_version = "1.0"
|
||||
load_subsystem = "false"
|
||||
supports_no_game = "false"
|
||||
database = "Nintendo - Super Nintendo Entertainment System|Nintendo - Sufami Turbo|Nintendo - Satellaview"
|
||||
hw_render = "false"
|
||||
needs_fullpath = "false"
|
||||
disk_control = "false"
|
||||
|
||||
description = "ChimeraSNES is a fork of the classic and popular SNES emulator Snes9x from circa 2005, much like snes9x2005. It has sound quality close to that of snes9x2005+ but is about as fast as snes9x2005 and comes preconfigured for slower systems."
|
@ -93,7 +93,7 @@ create_dist_dir()
|
||||
else
|
||||
mkdir $RARCH_DIST_DIR
|
||||
fi
|
||||
|
||||
|
||||
for a in "${ABIS[@]}"; do
|
||||
if [ -d $RARCH_DIST_DIR/${a} ]; then
|
||||
echo "Directory $RARCH_DIST_DIR/${a} already exists, skipping creation..."
|
||||
@ -128,6 +128,7 @@ WANT_CORES=" \
|
||||
snes9x \
|
||||
snes9x2002 \
|
||||
snes9x2005 \
|
||||
chimerasnes \
|
||||
snes9x2010 \
|
||||
genesis_plus_gx \
|
||||
virtualjaguar \
|
||||
@ -189,7 +190,7 @@ for core in $WANT_CORES; do
|
||||
path="target-libretro/jni"
|
||||
append="_$core"
|
||||
fi
|
||||
|
||||
|
||||
if [ $core = "scummvm" ]; then
|
||||
path="backends/platform/libretro/build/jni"
|
||||
fi
|
||||
|
@ -113,6 +113,7 @@ build_default_cores() {
|
||||
fi
|
||||
|
||||
libretro_build_core snes9x2005
|
||||
libretro_build_core chimerasnes
|
||||
if [ $platform != "psp1" ]; then
|
||||
# Excluded for binary size reasons
|
||||
libretro_build_core fbneo
|
||||
|
@ -165,6 +165,7 @@ build_default_cores() {
|
||||
fi
|
||||
|
||||
libretro_build_core snes9x2005
|
||||
libretro_build_core chimerasnes
|
||||
if [ $platform != "psp1" ]; then
|
||||
# Excluded for binary size reasons
|
||||
libretro_build_core fbneo
|
||||
|
@ -96,6 +96,7 @@ smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES G
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC_JNI Makefile libretro/jni
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC_JNI Makefile jni
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC_JNI Makefile jni USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC_JNI Makefile jni
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC_JNI Makefile jni
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC_JNI makefilelibretro ratufacoat/libretro/jni
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC_JNI Makefile jni
|
||||
|
@ -91,6 +91,7 @@ scummvm libretro-scummvm https://github.com/libretro/scummvm.git master NO GENER
|
||||
smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES GENERIC Makefile.libretro .
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -90,6 +90,7 @@ scummvm libretro-scummvm https://github.com/libretro/scummvm.git master YES GENE
|
||||
smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES GENERIC Makefile.libretro .
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC_ALT Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -89,6 +89,7 @@ scummvm libretro-scummvm https://github.com/libretro/scummvm.git master YES GENE
|
||||
smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES GENERIC Makefile.libretro .
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -107,6 +107,7 @@ scummvm libretro-scummvm https://github.com/libretro/scummvm.git master YES GENE
|
||||
smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES GENERIC Makefile.libretro .
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -90,6 +90,7 @@ scummvm libretro-scummvm https://github.com/libretro/scummvm.git master NO GENER
|
||||
smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES GENERIC Makefile.libretro .
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -70,6 +70,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
race libretro-race https://github.com/libretro/RACE.git master YES GENERIC Makefile .
|
||||
scummvm libretro-scummvm https://github.com/libretro/scummvm.git master YES GENERIC Makefile backends/platform/libretro/build
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC_ALT Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -60,6 +60,7 @@ flycast libretro-flycast https://github.com/libretro/flycast.git master NO GENER
|
||||
pocketcdg libretro-pocketcdg https://github.com/libretro/libretro-pocketcdg.git master YES GENERIC Makefile .
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -101,6 +101,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -100,6 +100,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -123,6 +123,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -54,7 +54,7 @@ kronos libretro-kronos https://github.com/libretro/yabause.git kronos YES GENERI
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile .
|
||||
lutro libretro-lutro https://github.com/libretro/libretro-lutro master YES GENERIC Makefile .
|
||||
lowresnx libretro-lowresnx https://github.com/timoinutilis/lowres-nx.git retroarch YES GENERIC Makefile platform/LibRetro
|
||||
mame libretro-mame https://github.com/libretro/mame.git master NO GENERIC Makefile.libretro .
|
||||
mame libretro-mame https://github.com/libretro/mame.git master NO GENERIC Makefile.libretro .
|
||||
mame2000 libretro-mame2000 https://github.com/libretro/mame2000-libretro.git master YES GENERIC Makefile .
|
||||
mame2003 libretro-mame2003 https://github.com/libretro/mame2003-libretro.git master YES GENERIC Makefile .
|
||||
mame2003_plus libretro-mame2003-plus https://github.com/libretro/mame2003-plus-libretro.git master YES GENERIC Makefile .
|
||||
@ -113,6 +113,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -59,6 +59,7 @@ smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES G
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -47,6 +47,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -51,6 +51,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -61,6 +61,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
scummvm libretro-scummvm https://github.com/libretro/scummvm.git master YES GENERIC Makefile backends/platform/libretro/build
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -51,6 +51,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master NO GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -62,6 +62,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master NO GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master NO GENERIC Makefile .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
|
@ -35,6 +35,7 @@ race libretro-race https://github.com/libretro/RACE.git master YES GENERIC Makef
|
||||
smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES GENERIC Makefile.libretro .
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master NO GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
tempgba libretro-tempgba https://github.com/libretro/TempGBA-libretro.git master NO GENERIC Makefile .
|
||||
|
@ -62,6 +62,7 @@ smsplus libretro-smsplus https://github.com/libretro/smsplus-gx.git master YES G
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -30,6 +30,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC_ALT Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -29,6 +29,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC_ALT Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -37,6 +37,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC_ALT Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -37,6 +37,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC_ALT Makefile.libretro .
|
||||
squirreljme libretro-squirreljme https://github.com/XerTheSquirrel/SquirrelJME.git trunk YES GENERIC makefilelibretro ratufacoat
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -38,6 +38,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
stella libretro-stella https://github.com/stella-emu/stella.git master YES GENERIC Makefile src/libretro
|
||||
tgbdual libretro-tgbdual https://github.com/libretro/tgbdual-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -37,6 +37,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
stella libretro-stella https://github.com/stella-emu/stella.git master YES GENERIC Makefile src/libretro
|
||||
tgbdual libretro-tgbdual https://github.com/libretro/tgbdual-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -38,6 +38,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
stella libretro-stella https://github.com/stella-emu/stella.git master YES GENERIC Makefile src/libretro
|
||||
test libretro-samples https://github.com/libretro/libretro-samples.git master YES GENERIC Makefile tests/test
|
||||
|
@ -38,6 +38,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
stella libretro-stella https://github.com/stella-emu/stella.git master YES GENERIC Makefile src/libretro
|
||||
test libretro-samples https://github.com/libretro/libretro-samples.git master YES GENERIC Makefile tests/test
|
||||
|
@ -38,6 +38,7 @@ quicknes libretro-quicknes https://github.com/libretro/QuickNES_Core.git master
|
||||
snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC Makefile libretro
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
stella libretro-stella https://github.com/stella-emu/stella.git master YES GENERIC Makefile src/libretro
|
||||
test libretro-samples https://github.com/libretro/libretro-samples.git master YES GENERIC Makefile tests/test
|
||||
|
@ -118,6 +118,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
stella libretro-stella https://github.com/stella-emu/stella.git master YES GENERIC Makefile src/libretro
|
||||
|
@ -116,6 +116,7 @@ snes9x libretro-snes9x https://github.com/libretro/snes9x.git master YES GENERIC
|
||||
snes9x2002 libretro-snes9x2002 https://github.com/libretro/snes9x2002.git master YES GENERIC Makefile .
|
||||
snes9x2005 libretro-snes9x2005 https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile .
|
||||
snes9x2005_plus libretro-snes9x2005_plus https://github.com/libretro/snes9x2005.git master YES GENERIC Makefile . USE_BLARGG_APU=1
|
||||
chimerasnes libretro-chimerasnes https://github.com/jamsilva/chimerasnes.git master YES GENERIC Makefile .
|
||||
snes9x2010 libretro-snes9x2010 https://github.com/libretro/snes9x2010.git master YES GENERIC Makefile.libretro .
|
||||
stella2014 libretro-stella2014 https://github.com/libretro/stella2014-libretro.git master YES GENERIC Makefile .
|
||||
stella libretro-stella https://github.com/stella-emu/stella.git master YES GENERIC Makefile src/libretro
|
||||
|
@ -236,7 +236,7 @@ libretro_easyrpg_build_subdir="build"
|
||||
libretro_easyrpg_git_submodules="yes"
|
||||
libretro_easyrpg_post_fetch_cmd="cmake . -DPLAYER_TARGET_PLATFORM=libretro -t build"
|
||||
libretro_easyrpg_build_makefile="Makefile"
|
||||
|
||||
|
||||
include_core_gme() {
|
||||
register_module core "gme" -ngc -ps3 -psp1 -wii
|
||||
}
|
||||
@ -262,7 +262,7 @@ include_core_snes9x2002() {
|
||||
}
|
||||
libretro_snes9x2002_name="SNES9x 2002"
|
||||
libretro_snes9x2002_git_url="https://github.com/libretro/snes9x2002.git"
|
||||
|
||||
|
||||
include_core_snes9x2005() {
|
||||
register_module core "snes9x2005" -ngc -ps3 -psp1 -wii
|
||||
}
|
||||
@ -276,6 +276,12 @@ libretro_snes9x2005_plus_name="SNES9x 2005 Plus"
|
||||
libretro_snes9x2005_plus_git_url="https://github.com/libretro/snes9x2005.git"
|
||||
libretro_snes9x2005_plus_build_args="USE_BLARGG_APU=\"1\""
|
||||
|
||||
include_core_chimerasnes() {
|
||||
register_module core "chimerasnes" -ngc -ps3 -psp1 -wii
|
||||
}
|
||||
libretro_chimerasnes_name="ChimeraSNES"
|
||||
libretro_chimerasnes_git_url="https://github.com/jamsilva/chimerasnes.git"
|
||||
|
||||
include_core_snes9x2010() {
|
||||
register_module core "snes9x2010" -ps3
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user