mirror of
https://github.com/libretro/libretro-super.git
synced 2024-12-02 21:26:31 +00:00
commit
730daa8d77
@ -241,6 +241,9 @@ include_core_vecx
|
||||
# --- ColecoVision emulator cores .--
|
||||
include_core_gearcoleco
|
||||
|
||||
# --- Texas Instruments emulator cores .--
|
||||
include_core_numero
|
||||
|
||||
# --- Media player ---
|
||||
include_core_ffmpeg
|
||||
|
||||
|
37
dist/info/numero_libretro.info
vendored
Normal file
37
dist/info/numero_libretro.info
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
# Software Information
|
||||
display_name = "Texas Instruments TI-83 (Numero)"
|
||||
authors = "Neil Barkhina|Wabbitemu"
|
||||
supported_extensions = "8xp|8xk|8xg"
|
||||
corename = "Numero"
|
||||
license = "GPLv2"
|
||||
permissions = ""
|
||||
display_version = "v1.0"
|
||||
categories = "Emulator"
|
||||
|
||||
# Hardware Information
|
||||
manufacturer = "Texas Instruments"
|
||||
systemname = "TI83"
|
||||
systemid = "ti_83"
|
||||
|
||||
# Libretro Features
|
||||
supports_no_game = "true"
|
||||
savestate = "true"
|
||||
savestate_features = "deterministic"
|
||||
cheats = "false"
|
||||
core_options = "true"
|
||||
needs_fullpath = "false"
|
||||
|
||||
# BIOS / Firmware
|
||||
firmware_count = 3
|
||||
firmware0_desc = "ti83se.rom (TI-83 Silver Edition)"
|
||||
firmware0_path = "ti83se.rom"
|
||||
firmware0_opt = "true"
|
||||
firmware1_desc = "ti83plus.rom (TI-83 Plus)"
|
||||
firmware1_path = "ti83plus.rom"
|
||||
firmware1_opt = "true"
|
||||
firmware2_desc = "ti83.rom (TI-83)"
|
||||
firmware2_path = "ti83.rom"
|
||||
firmware2_opt = "true"
|
||||
notes = "(!) ti83se.rom (md5): c6ff8204c5c81b7be34614dbbd690c8b|(!) ti83plus.rom (md5): 8011181f810b5ec4e9d6a03f0e14257a|(!) ti83.rom (md5): d4448d09bbfde687c04f9e3310e023ab"
|
||||
|
||||
description = "An emulator for the TI-83 family of graphing calculators. It is a port of the Wabbitemu emulator to libretro. It allows you to play your TI-83 games like never before in fullscreen using a gamepad. You can also control it with a mouse or keyboard, or you can just use the virtual mouse for navigation."
|
@ -148,6 +148,7 @@ WANT_CORES=" \
|
||||
quicknes \
|
||||
handy \
|
||||
gambatte \
|
||||
numero \
|
||||
prboom \
|
||||
tyrquake \
|
||||
vba_next \
|
||||
@ -177,6 +178,9 @@ for core in $WANT_CORES; do
|
||||
fi
|
||||
if [ $core = "gambatte" ]; then
|
||||
path="libgambatte/libretro/jni"
|
||||
fi
|
||||
if [ $core = "numero" ]; then
|
||||
path="libnumero/libretro/jni"
|
||||
fi
|
||||
if [ $core = "desmume" ]; then
|
||||
path="desmume/src/libretro/jni"
|
||||
|
@ -123,6 +123,7 @@ build_default_cores() {
|
||||
libretro_build_core handy
|
||||
libretro_build_core stella
|
||||
libretro_build_core nestopia
|
||||
libretro_build_core numero
|
||||
libretro_build_core nxengine
|
||||
libretro_build_core prboom
|
||||
libretro_build_core quicknes
|
||||
|
@ -18,6 +18,7 @@ if [[ -z "$1" ]]; then
|
||||
WANT_CORES=" \
|
||||
2048 \
|
||||
gambatte \
|
||||
numero \
|
||||
snes9x2010 \
|
||||
vecx"
|
||||
else
|
||||
|
@ -175,6 +175,7 @@ build_default_cores() {
|
||||
libretro_build_core handy
|
||||
libretro_build_core stella
|
||||
libretro_build_core nestopia
|
||||
libretro_build_core numero
|
||||
libretro_build_core nxengine
|
||||
libretro_build_core prboom
|
||||
libretro_build_core quicknes
|
||||
|
@ -73,6 +73,7 @@ nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC_JNI Makefile jni
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC_JNI Makefile libretro/jni
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC_JNI Makefile.libretro jni
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC_JNI Makefile libnumero/libretro/jni
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC_JNI Makefile jni
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC_JNI Makefile jni
|
||||
oberon libretro-oberon https://github.com/libretro/oberon-risc-emu.git master YES GENERIC_JNI Makefile Libretro/jni
|
||||
|
@ -64,6 +64,7 @@ meteor libretro-meteor https://github.com/libretro/meteor-libretro.git master YE
|
||||
mgba libretro-mgba https://github.com/libretro/mgba.git master YES GENERIC Makefile.libretro .
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64plus-libretro-nx.git ios YES GENERIC_GL Makefile .
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master NO GENERIC_GL Makefile .
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master NO GENERIC Makefile.libretro libretro
|
||||
|
@ -63,6 +63,7 @@ meteor libretro-meteor https://github.com/libretro/meteor-libretro.git master NO
|
||||
mgba libretro-mgba https://github.com/libretro/mgba.git master YES GENERIC Makefile.libretro .
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64plus-libretro-nx.git ios YES GENERIC_GL Makefile .
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master YES GENERIC_GL Makefile . WITH_DYNAREC=arm
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
|
@ -62,6 +62,7 @@ meteor libretro-meteor https://github.com/libretro/meteor-libretro.git master NO
|
||||
mgba libretro-mgba https://github.com/libretro/mgba.git master YES GENERIC Makefile.libretro .
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64plus-libretro-nx.git ios YES GENERIC_GL Makefile .
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master YES GENERIC_GL Makefile .
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
|
@ -83,6 +83,7 @@ nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
openlara libretro-openlara https://github.com/libretro/OpenLara.git master YES GENERIC Makefile src/platform/libretro
|
||||
|
@ -68,6 +68,7 @@ mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YE
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master NO GENERIC Makefile.libretro libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
play libretro-play https://github.com/jpd002/Play-.git master YES CMAKE Makefile build -DBUILD_LIBRETRO_CORE=yes -DBUILD_PLAY=off -DBUILD_TESTS=no -DENABLE_AMAZON_S3=no -DCMAKE_TOOLCHAIN_FILE=../deps/Dependencies/cmake-ios/ios.cmake -DTARGET_IOS=ON -DCMAKE_BUILD_TYPE="Release"
|
||||
|
@ -52,6 +52,7 @@ meteor libretro-meteor https://github.com/libretro/meteor-libretro.git master NO
|
||||
mgba libretro-mgba https://github.com/libretro/mgba.git master YES GENERIC Makefile.libretro .
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master YES GENERIC_GL Makefile . WITH_DYNAREC=x86_64
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
|
@ -44,6 +44,7 @@ mednafen_vb libretro-beetle_vb https://github.com/libretro/beetle-vb-libretro.gi
|
||||
mednafen_wswan libretro-beetle_wswan https://github.com/libretro/beetle-wswan-libretro.git master YES GENERIC Makefile .
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master NO GENERIC_GL Makefile .
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile .
|
||||
|
@ -76,6 +76,7 @@ nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile .
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
oberon libretro-oberon https://github.com/libretro/oberon-risc-emu.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -74,6 +74,7 @@ nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile .
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
oberon libretro-oberon https://github.com/libretro/oberon-risc-emu.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -93,6 +93,7 @@ mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64pl
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
oberon libretro-oberon https://github.com/libretro/oberon-risc-emu.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -85,6 +85,7 @@ mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64pl
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
oberon libretro-oberon https://github.com/libretro/oberon-risc-emu.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -44,6 +44,7 @@ nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile .
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
pcsx_rearmed libretro-pcsx_rearmed https://github.com/libretro/pcsx_rearmed.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -38,6 +38,7 @@ mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YE
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master NO GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
pocketcdg libretro-pocketcdg https://github.com/libretro/libretro-pocketcdg.git master YES GENERIC Makefile .
|
||||
pokemini libretro-pokemini https://github.com/libretro/PokeMini.git master YES GENERIC Makefile .
|
||||
|
@ -49,6 +49,7 @@ mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64pl
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
pcsx_rearmed libretro-pcsx_rearmed https://github.com/libretro/pcsx_rearmed.git master YES GENERIC Makefile.libretro . DYNAREC=0
|
||||
|
@ -42,6 +42,7 @@ mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YE
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master NO GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
pocketcdg libretro-pocketcdg https://github.com/libretro/libretro-pocketcdg.git master YES GENERIC Makefile .
|
||||
pokemini libretro-pokemini https://github.com/libretro/PokeMini.git master YES GENERIC Makefile .
|
||||
|
@ -48,6 +48,7 @@ neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES G
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master NO GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
pocketcdg libretro-pocketcdg https://github.com/libretro/libretro-pocketcdg.git master YES GENERIC Makefile .
|
||||
|
@ -37,6 +37,7 @@ mgba libretro-mgba https://github.com/libretro/mgba.git master NO GENERIC Makefi
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master NO GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
pcsx_rearmed libretro-pcsx_rearmed https://github.com/libretro/pcsx_rearmed.git master NO GENERIC Makefile.libretro .
|
||||
|
@ -47,6 +47,7 @@ neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES G
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master NO GENERIC Makefile .
|
||||
pcsx_rearmed libretro-pcsx_rearmed https://github.com/libretro/pcsx_rearmed.git master NO GENERIC Makefile.libretro .
|
||||
|
@ -24,6 +24,7 @@ mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile li
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
njemu_cps2 libretro-njemu https://github.com/libretro/NJEMU-libretro.git master YES GENERIC Makefile .
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
picodrive libretro-picodrive https://github.com/libretro/picodrive.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -42,6 +42,7 @@ mgba libretro-mgba https://github.com/libretro/mgba.git master NO GENERIC Makefi
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile libretroBuildSystem
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master NO GENERIC Makefile.libretro libretro
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master YES Makefile . WITH_DYNAREC=arm
|
||||
pocketcdg libretro-pocketcdg https://github.com/libretro/libretro-pocketcdg.git master YES GENERIC Makefile .
|
||||
neocd libretro-neocd https://github.com/libretro/neocd_libretro.git master YES GENERIC Makefile .
|
||||
|
@ -24,6 +24,7 @@ mu libretro-mu https://github.com/libretro/Mu.git master YES GENERIC Makefile li
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master YES GENERIC_GL Makefile . WITH_DYNAREC=x86_64
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master NO GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
opera libretro-opera https://github.com/libretro/opera-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -25,6 +25,7 @@ opera libretro-opera https://github.com/libretro/opera-libretro.git master YES G
|
||||
parallel_n64 libretro-parallel_n64 https://github.com/libretro/parallel-n64.git master YES GENERIC_GL Makefile . WITH_DYNAREC=x86
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master NO GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
pokemini libretro-pokemini https://github.com/libretro/PokeMini.git master YES GENERIC Makefile .
|
||||
|
@ -26,6 +26,7 @@ mesen libretro-mesen https://github.com/libretro/Mesen.git master YES GENERIC Ma
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
opera libretro-opera https://github.com/libretro/opera-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -25,6 +25,7 @@ mesen libretro-mesen https://github.com/libretro/Mesen.git master YES GENERIC Ma
|
||||
mrboom libretro-mrboom https://github.com/libretro/mrboom-libretro.git master YES GENERIC Makefile .
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
opera libretro-opera https://github.com/libretro/opera-libretro.git master YES GENERIC Makefile .
|
||||
|
@ -27,6 +27,7 @@ mednafen_wswan libretro-beetle_wswan https://github.com/libretro/beetle-wswan-li
|
||||
mesen libretro-mesen https://github.com/libretro/Mesen.git master YES GENERIC Makefile Libretro platform=windows_msvc2017_desktop_x64
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
picodrive libretro-picodrive https://github.com/libretro/picodrive.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -26,6 +26,7 @@ mednafen_wswan libretro-beetle_wswan https://github.com/libretro/beetle-wswan-li
|
||||
mesen libretro-mesen https://github.com/libretro/Mesen.git master YES GENERIC Makefile Libretro platform=windows_msvc2017_desktop_x64
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
picodrive libretro-picodrive https://github.com/libretro/picodrive.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -27,6 +27,7 @@ mednafen_wswan libretro-beetle_wswan https://github.com/libretro/beetle-wswan-li
|
||||
mesen libretro-mesen https://github.com/libretro/Mesen.git master YES GENERIC Makefile Libretro platform=windows_msvc2017_desktop_x64
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
picodrive libretro-picodrive https://github.com/libretro/picodrive.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -90,6 +90,7 @@ mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64pl
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
oberon libretro-oberon https://github.com/libretro/oberon-risc-emu.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -87,6 +87,7 @@ mupen64plus_next libretro-mupen64plus_next https://github.com/libretro/mupen64pl
|
||||
nekop2 libretro-nekop2 https://github.com/libretro/libretro-meowPC98.git master YES GENERIC Makefile.libretro libretro
|
||||
nestopia libretro-nestopia https://github.com/libretro/nestopia.git master YES GENERIC Makefile libretro
|
||||
np2kai libretro-np2kai https://github.com/libretro/NP2kai.git master YES GENERIC Makefile.libretro sdl
|
||||
numero libretro-numero https://github.com/nbarkhina/numero.git master YES GENERIC Makefile .
|
||||
nxengine libretro-nxengine https://github.com/libretro/nxengine-libretro.git master YES GENERIC Makefile .
|
||||
o2em libretro-o2em https://github.com/libretro/libretro-o2em.git master YES GENERIC Makefile .
|
||||
oberon libretro-oberon https://github.com/libretro/oberon-risc-emu.git master YES GENERIC Makefile.libretro .
|
||||
|
@ -635,6 +635,14 @@ libretro_nestopia_name="Nestopia"
|
||||
libretro_nestopia_git_url="https://github.com/libretro/nestopia.git"
|
||||
libretro_nestopia_build_subdir="libretro"
|
||||
|
||||
include_core_numero() {
|
||||
register_module core "numero"
|
||||
}
|
||||
libretro_numero_name="Numero"
|
||||
libretro_numero_git_url="https://github.com/nbarkhina/numero.git"
|
||||
libretro_numero_build_platform="$FORMAT_COMPILER_TARGET_ALT"
|
||||
libretro_numero_build_makefile="Makefile.libretro"
|
||||
|
||||
include_core_craft() {
|
||||
register_module core "craft"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user