diff --git a/build-config.sh b/build-config.sh index 64bfc0c5..37e6cf9e 100644 --- a/build-config.sh +++ b/build-config.sh @@ -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 diff --git a/dist/info/numero_libretro.info b/dist/info/numero_libretro.info new file mode 100644 index 00000000..c4c7b464 --- /dev/null +++ b/dist/info/numero_libretro.info @@ -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." diff --git a/libretro-build-android-mk.sh b/libretro-build-android-mk.sh index c4cfba0e..a6a3526b 100755 --- a/libretro-build-android-mk.sh +++ b/libretro-build-android-mk.sh @@ -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" diff --git a/libretro-build-bsd.sh b/libretro-build-bsd.sh index 0aec25ee..e4ec1f74 100755 --- a/libretro-build-bsd.sh +++ b/libretro-build-bsd.sh @@ -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 diff --git a/libretro-build-sncps3.sh b/libretro-build-sncps3.sh index 3007718c..ccd21857 100755 --- a/libretro-build-sncps3.sh +++ b/libretro-build-sncps3.sh @@ -18,6 +18,7 @@ if [[ -z "$1" ]]; then WANT_CORES=" \ 2048 \ gambatte \ + numero \ snes9x2010 \ vecx" else diff --git a/libretro-build.sh b/libretro-build.sh index 52c5e447..62a45af6 100755 --- a/libretro-build.sh +++ b/libretro-build.sh @@ -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 diff --git a/recipes/android/cores-android b/recipes/android/cores-android index e9bfe0d2..66dc4655 100644 --- a/recipes/android/cores-android +++ b/recipes/android/cores-android @@ -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 diff --git a/recipes/apple/cores-ios-arm64-generic b/recipes/apple/cores-ios-arm64-generic index c2801b2b..3614e75a 100644 --- a/recipes/apple/cores-ios-arm64-generic +++ b/recipes/apple/cores-ios-arm64-generic @@ -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 diff --git a/recipes/apple/cores-ios-generic b/recipes/apple/cores-ios-generic index 3e6452be..6d56796c 100644 --- a/recipes/apple/cores-ios-generic +++ b/recipes/apple/cores-ios-generic @@ -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 diff --git a/recipes/apple/cores-ios9-generic b/recipes/apple/cores-ios9-generic index a17c5275..bc811277 100644 --- a/recipes/apple/cores-ios9-generic +++ b/recipes/apple/cores-ios9-generic @@ -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 diff --git a/recipes/apple/cores-osx-x64-generic b/recipes/apple/cores-osx-x64-generic index 8deafa5b..bbfab293 100644 --- a/recipes/apple/cores-osx-x64-generic +++ b/recipes/apple/cores-osx-x64-generic @@ -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 diff --git a/recipes/apple/cores-tvos-arm64-generic b/recipes/apple/cores-tvos-arm64-generic index 990965ce..5e72f112 100644 --- a/recipes/apple/cores-tvos-arm64-generic +++ b/recipes/apple/cores-tvos-arm64-generic @@ -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" diff --git a/recipes/blackberry/cores-qnx-generic b/recipes/blackberry/cores-qnx-generic index a0eb035f..18ad51be 100644 --- a/recipes/blackberry/cores-qnx-generic +++ b/recipes/blackberry/cores-qnx-generic @@ -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 diff --git a/recipes/emscripten/emscripten b/recipes/emscripten/emscripten index 0afd5d72..c43db67c 100644 --- a/recipes/emscripten/emscripten +++ b/recipes/emscripten/emscripten @@ -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 . diff --git a/recipes/linux/cores-linux-arm7neonhf b/recipes/linux/cores-linux-arm7neonhf index 1fedf53f..0e81e857 100644 --- a/recipes/linux/cores-linux-arm7neonhf +++ b/recipes/linux/cores-linux-arm7neonhf @@ -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 . diff --git a/recipes/linux/cores-linux-armhf-generic b/recipes/linux/cores-linux-armhf-generic index d04f1f58..87134db6 100644 --- a/recipes/linux/cores-linux-armhf-generic +++ b/recipes/linux/cores-linux-armhf-generic @@ -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 . diff --git a/recipes/linux/cores-linux-x64-generic b/recipes/linux/cores-linux-x64-generic index 4fdcdcb2..8ef56a49 100644 --- a/recipes/linux/cores-linux-x64-generic +++ b/recipes/linux/cores-linux-x64-generic @@ -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 . diff --git a/recipes/linux/cores-linux-x86-generic b/recipes/linux/cores-linux-x86-generic index 90142a38..3ad0d436 100644 --- a/recipes/linux/cores-linux-x86-generic +++ b/recipes/linux/cores-linux-x86-generic @@ -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 . diff --git a/recipes/nintendo/3ds b/recipes/nintendo/3ds index 3b105d20..3a1e9779 100644 --- a/recipes/nintendo/3ds +++ b/recipes/nintendo/3ds @@ -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 . diff --git a/recipes/nintendo/gamecube b/recipes/nintendo/gamecube index 69d9dab8..11f871cd 100644 --- a/recipes/nintendo/gamecube +++ b/recipes/nintendo/gamecube @@ -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 . diff --git a/recipes/nintendo/libnx b/recipes/nintendo/libnx index 1f887018..e86e3b87 100644 --- a/recipes/nintendo/libnx +++ b/recipes/nintendo/libnx @@ -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 diff --git a/recipes/nintendo/wii b/recipes/nintendo/wii index 4f9db871..38460ddb 100644 --- a/recipes/nintendo/wii +++ b/recipes/nintendo/wii @@ -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 . diff --git a/recipes/nintendo/wiiu b/recipes/nintendo/wiiu index 988e3c3d..59d6fb32 100644 --- a/recipes/nintendo/wiiu +++ b/recipes/nintendo/wiiu @@ -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 . diff --git a/recipes/playstation/ps3 b/recipes/playstation/ps3 index 07439a86..0441a36a 100644 --- a/recipes/playstation/ps3 +++ b/recipes/playstation/ps3 @@ -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 . diff --git a/recipes/playstation/psl1ght b/recipes/playstation/psl1ght index c0fb2e62..b5aa1fff 100644 --- a/recipes/playstation/psl1ght +++ b/recipes/playstation/psl1ght @@ -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 . diff --git a/recipes/playstation/psp b/recipes/playstation/psp index 7c179219..a1775422 100644 --- a/recipes/playstation/psp +++ b/recipes/playstation/psp @@ -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 . diff --git a/recipes/playstation/vita b/recipes/playstation/vita index 2bc6529d..733a1fe8 100644 --- a/recipes/playstation/vita +++ b/recipes/playstation/vita @@ -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 . diff --git a/recipes/windows/cores-windows-msvc2010-x64_seh-generic b/recipes/windows/cores-windows-msvc2010-x64_seh-generic index 5d247dae..39ded0e8 100644 --- a/recipes/windows/cores-windows-msvc2010-x64_seh-generic +++ b/recipes/windows/cores-windows-msvc2010-x64_seh-generic @@ -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 . diff --git a/recipes/windows/cores-windows-msvc2010-x86_dw2-generic b/recipes/windows/cores-windows-msvc2010-x86_dw2-generic index 3e9655c0..14457193 100644 --- a/recipes/windows/cores-windows-msvc2010-x86_dw2-generic +++ b/recipes/windows/cores-windows-msvc2010-x86_dw2-generic @@ -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 . diff --git a/recipes/windows/cores-windows-msvc2017-desktop-x64_seh-generic b/recipes/windows/cores-windows-msvc2017-desktop-x64_seh-generic index 9468632f..b7afd25b 100644 --- a/recipes/windows/cores-windows-msvc2017-desktop-x64_seh-generic +++ b/recipes/windows/cores-windows-msvc2017-desktop-x64_seh-generic @@ -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 . diff --git a/recipes/windows/cores-windows-msvc2017-desktop-x86_dw2-generic b/recipes/windows/cores-windows-msvc2017-desktop-x86_dw2-generic index 5defdf92..81763435 100644 --- a/recipes/windows/cores-windows-msvc2017-desktop-x86_dw2-generic +++ b/recipes/windows/cores-windows-msvc2017-desktop-x86_dw2-generic @@ -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 . diff --git a/recipes/windows/cores-windows-msvc2017-uwp-arm-generic b/recipes/windows/cores-windows-msvc2017-uwp-arm-generic index ebd7f120..dab20689 100644 --- a/recipes/windows/cores-windows-msvc2017-uwp-arm-generic +++ b/recipes/windows/cores-windows-msvc2017-uwp-arm-generic @@ -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 . diff --git a/recipes/windows/cores-windows-msvc2017-uwp-x64_seh-generic b/recipes/windows/cores-windows-msvc2017-uwp-x64_seh-generic index 49659ed8..efd28515 100644 --- a/recipes/windows/cores-windows-msvc2017-uwp-x64_seh-generic +++ b/recipes/windows/cores-windows-msvc2017-uwp-x64_seh-generic @@ -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 . diff --git a/recipes/windows/cores-windows-msvc2017-uwp-x86_dw2-generic b/recipes/windows/cores-windows-msvc2017-uwp-x86_dw2-generic index ebd7f120..dab20689 100644 --- a/recipes/windows/cores-windows-msvc2017-uwp-x86_dw2-generic +++ b/recipes/windows/cores-windows-msvc2017-uwp-x86_dw2-generic @@ -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 . diff --git a/recipes/windows/cores-windows-x64_seh-generic b/recipes/windows/cores-windows-x64_seh-generic index 4c76e30a..23ab995d 100644 --- a/recipes/windows/cores-windows-x64_seh-generic +++ b/recipes/windows/cores-windows-x64_seh-generic @@ -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 . diff --git a/recipes/windows/cores-windows-x86_dw2-generic b/recipes/windows/cores-windows-x86_dw2-generic index 8f02f0a6..bee05d08 100644 --- a/recipes/windows/cores-windows-x86_dw2-generic +++ b/recipes/windows/cores-windows-x86_dw2-generic @@ -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 . diff --git a/rules.d/core-rules.sh b/rules.d/core-rules.sh index 5db282d7..a1e51ebd 100644 --- a/rules.d/core-rules.sh +++ b/rules.d/core-rules.sh @@ -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" }