From 6f182468099cfc36adb81c338ec34d59c764590b Mon Sep 17 00:00:00 2001 From: Aloys Date: Tue, 21 Jul 2026 22:49:46 +0800 Subject: [PATCH 1/6] Add SPMP8000Emu core documentation Add documentation page for the SPMP8000Emu libretro core following the new-core checklist. --- docs/library/spmp8000emu.md | 92 +++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 docs/library/spmp8000emu.md diff --git a/docs/library/spmp8000emu.md b/docs/library/spmp8000emu.md new file mode 100644 index 0000000000..21366619eb --- /dev/null +++ b/docs/library/spmp8000emu.md @@ -0,0 +1,92 @@ +# SPMP8000 (SPMP8000Emu) + +## Background + +SPMP8000 is a game platform developed by Sunplus for portable game devices. The SPMP8000 chipset features an ARM-based SoC with integrated graphics, audio, and input handling. SPMP8000Emu is an emulator for this platform written in Rust, with a libretro core front-end. + +The SPMP8000Emu core has been authored by: + +- jiangxincode + +The SPMP8000Emu core is licensed under: + +- [BSD-3-Clause](https://github.com/jiangxincode/SPMP8000Emu/blob/master/LICENSE) + +A summary of the licenses behind RetroArch and its cores can be found [here](../development/licenses.md). + +## BIOS + +No BIOS or firmware files are required. + +## Extensions + +Content that can be loaded by the SPMP8000Emu core have the following file extensions: + +- .bin + +RetroArch database(s) that are associated with the SPMP8000Emu core: + +- SPMP8000 + +## Features + +Frontend-level settings or features that the SPMP8000Emu core respects: + +| Feature | Supported | +|-------------------|:---------:| +| Restart | ✔ | +| Saves | ✕ | +| States | ✕ | +| Rewind | ✕ | +| Netplay | ✕ | +| Core Options | ✕ | +| [Memory Monitoring (achievements)](../guides/memorymonitoring.md) | ✕ | +| RetroArch Cheats | ✕ | +| Native Cheats | ✕ | +| Controls | ✔ | +| Remapping | ✔ | +| Multi-Mouse | ✕ | +| Rumble | ✕ | +| Sensors | ✕ | +| Camera | ✕ | +| Location | ✕ | +| Subsystem | ✕ | +| [Softpatching](../guides/softpatching.md) | ✕ | +| Disk Control | ✕ | +| Username | ✕ | +| Language | ✕ | +| Crop Overscan | ✕ | +| LEDs | ✕ | + +## Directories + +The SPMP8000Emu core's library name is 'SPMP8000 (SPMP8000Emu)' + +## Usage + +The SPMP8000Emu core loads .bin game ROMs directly. Video is output in the XRGB8888 pixel format and audio is output as stereo. Save states, cheats, and core options are not yet implemented. + +## User 1 device types + +The SPMP8000Emu core supports the following device type(s) in the controls menu, bolded device types are the default for the specified user(s): + +- **RetroPad** - Gamepad + +## Joypad + +| RetroPad Inputs | User 1 input descriptors | +|------------------------------------------------|--------------------------| +| ![](../image/retropad/retro_b.png) | O Button | +| ![](../image/retropad/retro_a.png) | X Button | +| ![](../image/retropad/retro_start.png) | START | +| ![](../image/retropad/retro_select.png) | SELECT | +| ![](../image/retropad/retro_dpad_up.png) | Up | +| ![](../image/retropad/retro_dpad_down.png) | Down | +| ![](../image/retropad/retro_dpad_left.png) | Left | +| ![](../image/retropad/retro_dpad_right.png) | Right | + +## External links + +- [SPMP8000Emu Repository](https://github.com/jiangxincode/SPMP8000Emu) +- [Libretro SPMP8000Emu Core info file](https://github.com/libretro/libretro-super/blob/master/dist/info/spmp8000emu_libretro.info) +- [Report Libretro SPMP8000Emu Core Issues Here](https://github.com/jiangxincode/SPMP8000Emu/issues) \ No newline at end of file From 50e874dbc05182ceb323ea774e87a9227ef2b8e2 Mon Sep 17 00:00:00 2001 From: Aloys Date: Tue, 21 Jul 2026 22:54:35 +0800 Subject: [PATCH 2/6] Add SPMP8000Emu to mkdocs, core-list, and licenses - Add SPMP8000Emu entry to mkdocs.yml Sunplus Emulation section - Add SPMP8000Emu entry to core-list.md - Add SPMP8000Emu entry to licenses.md (BSD-3-Clause) --- docs/development/licenses.md | 1 + docs/guides/core-list.md | 1 + mkdocs.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/docs/development/licenses.md b/docs/development/licenses.md index e8f4c01f74..3c165230c7 100644 --- a/docs/development/licenses.md +++ b/docs/development/licenses.md @@ -169,6 +169,7 @@ See below for a summary of the licenses behind RetroArch and its cores: | Mupen64Plus | [GPLv3](https://github.com/libretro/mupen64plus-libretro/blob/master/LICENSE) | | | Mupen64Plus GLES3 | [GPLv3](https://github.com/libretro/mupen64plus-libretro/blob/master/LICENSE) | | | [Native32Emu](../library/native32emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/Native32Emu/blob/master/LICENSE) | | +| [SPMP8000Emu](../library/spmp8000emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/SPMP8000Emu/blob/master/LICENSE) | | | Neko Project II | | | | Neko Project II Kai | [MIT](https://github.com/AZO234/NP2kai/blob/master/LICENSE) | | | [Nestopia](../library/nestopia.md) | [GPLv2](https://github.com/libretro/nestopia/blob/master/COPYING) | | diff --git a/docs/guides/core-list.md b/docs/guides/core-list.md index bdd7f86704..3c6854e1a1 100644 --- a/docs/guides/core-list.md +++ b/docs/guides/core-list.md @@ -147,6 +147,7 @@ | [Mupen64Plus-Next GLES2](https://docs.libretro.com/library/mupen64plus/) | Nintendo 64 | | | [Mupen64Plus-Next GLES3](https://docs.libretro.com/library/mupen64plus/) | Nintendo 64 | | | [Native32Emu](../library/native32emu.md) | Sunplus Native32 | An emulator for the Sunplus Native32 game format used by DVD player and TV chipsets | +| [SPMP8000Emu](../library/spmp8000emu.md) | Sunplus SPMP8000 | An emulator for the Sunplus SPMP8000 game platform used by portable game devices | | Neko Project II | NEC PC-98 | | | Neko Project II Kai | NEC PC-98 | | | NeoCD | Neo Geo CD | | diff --git a/mkdocs.yml b/mkdocs.yml index cd9cae56a1..1cfae2989f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -281,6 +281,7 @@ nav: - 'MSX/SVI/ColecoVision/SG-1000 (blueMSX)': 'library/bluemsx.md' - 'Sunplus Emulation': - 'Sunplus - Native32 (Native32Emu)': 'library/native32emu.md' + - 'Sunplus - SPMP8000 (SPMP8000Emu)': 'library/spmp8000emu.md' - 'Texas Instruments Emulation': - 'Texas Instruments - TI-83 (Numero)': 'library/numero.md' - 'Thomson Emulation': From 7bbb5e2bfdc0aef8f457cdc3e2858d8f0129764f Mon Sep 17 00:00:00 2001 From: Aloys Date: Tue, 21 Jul 2026 22:56:58 +0800 Subject: [PATCH 3/6] Fix SPMP8000Emu alphabetical ordering in licenses and core-list --- docs/development/licenses.md | 2 +- docs/guides/core-list.md | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/development/licenses.md b/docs/development/licenses.md index 3c165230c7..c8494cf9a7 100644 --- a/docs/development/licenses.md +++ b/docs/development/licenses.md @@ -169,7 +169,6 @@ See below for a summary of the licenses behind RetroArch and its cores: | Mupen64Plus | [GPLv3](https://github.com/libretro/mupen64plus-libretro/blob/master/LICENSE) | | | Mupen64Plus GLES3 | [GPLv3](https://github.com/libretro/mupen64plus-libretro/blob/master/LICENSE) | | | [Native32Emu](../library/native32emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/Native32Emu/blob/master/LICENSE) | | -| [SPMP8000Emu](../library/spmp8000emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/SPMP8000Emu/blob/master/LICENSE) | | | Neko Project II | | | | Neko Project II Kai | [MIT](https://github.com/AZO234/NP2kai/blob/master/LICENSE) | | | [Nestopia](../library/nestopia.md) | [GPLv2](https://github.com/libretro/nestopia/blob/master/COPYING) | | @@ -202,6 +201,7 @@ See below for a summary of the licenses behind RetroArch and its cores: | [SameDuck](../library/sameduck.md) | [MIT](https://github.com/libretro/) | | | [SAME_CDI](../library/same_cdi.md) | [GPLv2](https://github.com/libretro/same_cdi/blob/master/COPYING) | | | [ScummVM](../library/scummvm.md) | [GPLv2](https://github.com/libretro/scummvm/blob/master/COPYING) | | +| [SPMP8000Emu](../library/spmp8000emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/SPMP8000Emu/blob/master/LICENSE) | | | [Snes9x](../library/snes9x.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2002](../library/snes9x_2002.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2005](../library/snes9x_2005.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | diff --git a/docs/guides/core-list.md b/docs/guides/core-list.md index 3c6854e1a1..bdd7f86704 100644 --- a/docs/guides/core-list.md +++ b/docs/guides/core-list.md @@ -147,7 +147,6 @@ | [Mupen64Plus-Next GLES2](https://docs.libretro.com/library/mupen64plus/) | Nintendo 64 | | | [Mupen64Plus-Next GLES3](https://docs.libretro.com/library/mupen64plus/) | Nintendo 64 | | | [Native32Emu](../library/native32emu.md) | Sunplus Native32 | An emulator for the Sunplus Native32 game format used by DVD player and TV chipsets | -| [SPMP8000Emu](../library/spmp8000emu.md) | Sunplus SPMP8000 | An emulator for the Sunplus SPMP8000 game platform used by portable game devices | | Neko Project II | NEC PC-98 | | | Neko Project II Kai | NEC PC-98 | | | NeoCD | Neo Geo CD | | From 8bf7ae1eff54dff1245fa09aa79515d5a1ea3d4b Mon Sep 17 00:00:00 2001 From: Aloys Date: Tue, 21 Jul 2026 22:57:41 +0800 Subject: [PATCH 4/6] Add SPMP8000Emu to core-list.md in correct alphabetical position From 9a1e07f8b9a2f2ad5415e57734839493c998e997 Mon Sep 17 00:00:00 2001 From: Aloys Date: Tue, 21 Jul 2026 22:58:12 +0800 Subject: [PATCH 5/6] Add SPMP8000Emu to core-list.md after Stella 2014 --- docs/guides/core-list.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guides/core-list.md b/docs/guides/core-list.md index bdd7f86704..40b3ce805a 100644 --- a/docs/guides/core-list.md +++ b/docs/guides/core-list.md @@ -198,6 +198,7 @@ | SquirrelJME | Java ME | A port of the SquirrelJME Java ME 8 Virtual Machine emulator to libretro | | [Stella](https://docs.libretro.com/library/stella/) | Atari 2600 | | | Stella 2014 | Atari 2600 | | +| [SPMP8000Emu](../library/spmp8000emu.md) | Sunplus SPMP8000 | An emulator for the Sunplus SPMP8000 game platform used by portable game devices | | Super Bros War | Game engine | A fork of Super Mario War, a fan-made multiplayer Super Mario Bros. style deathmatch game | | SwanStation | Sony PlayStation | SwanStation is a fork of the DuckStation emulator | | [TempGBA](https://docs.libretro.com/library/tempgba/) | Game Boy Advance | | From 450dd2c34cb8ad5379fb699921591afb9d5472c0 Mon Sep 17 00:00:00 2001 From: Aloys Date: Tue, 21 Jul 2026 23:02:33 +0800 Subject: [PATCH 6/6] Fix SPMP8000Emu position: after Snes9x 2010 (correct alphabetical order) --- docs/development/licenses.md | 3 ++- docs/guides/core-list.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/development/licenses.md b/docs/development/licenses.md index c8494cf9a7..e60699aa80 100644 --- a/docs/development/licenses.md +++ b/docs/development/licenses.md @@ -41,6 +41,7 @@ See below for a summary of the licenses behind RetroArch and its cores: | [Snes9x 2005](../library/snes9x_2005.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2005 Plus](../library/snes9x_2005_plus.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2010](../library/snes9x_2010.md) | [Non-commercial](https://github.com/libretro/snes9x2010/blob/master/LICENSE.txt) | Non-commercial | +| [SPMP8000Emu](../library/spmp8000emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/SPMP8000Emu/blob/master/LICENSE) | | | UME 2014 | [MAME (Non-commercial)](https://github.com/libretro/mame2014-libretro/blob/master/docs/license.txt) | Non-commercial | ## Libretro @@ -201,12 +202,12 @@ See below for a summary of the licenses behind RetroArch and its cores: | [SameDuck](../library/sameduck.md) | [MIT](https://github.com/libretro/) | | | [SAME_CDI](../library/same_cdi.md) | [GPLv2](https://github.com/libretro/same_cdi/blob/master/COPYING) | | | [ScummVM](../library/scummvm.md) | [GPLv2](https://github.com/libretro/scummvm/blob/master/COPYING) | | -| [SPMP8000Emu](../library/spmp8000emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/SPMP8000Emu/blob/master/LICENSE) | | | [Snes9x](../library/snes9x.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2002](../library/snes9x_2002.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2005](../library/snes9x_2005.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2005 Plus](../library/snes9x_2005_plus.md) | [Non-commercial](https://github.com/libretro/snes9x/blob/master/docs/snes9x-license.txt) | Non-commercial | | [Snes9x 2010](../library/snes9x_2010.md) | [Non-commercial](https://github.com/libretro/snes9x2010/blob/master/LICENSE.txt) | Non-commercial | +| [SPMP8000Emu](../library/spmp8000emu.md) | [BSD-3-Clause](https://github.com/jiangxincode/SPMP8000Emu/blob/master/LICENSE) | | | [Stella](../library/stella.md) | [GPLv2](https://github.com/stella-emu/stella/blob/master/License.txt) | | | TempGBA | [GPLv2](https://github.com/libretro/TempGBA-libretro/blob/master/copyright) | | | [TGB Dual](../library/tgb_dual.md) | [GPLv2](https://github.com/libretro/tgbdual-libretro/blob/master/docs/COPYING-2.0.txt) | | diff --git a/docs/guides/core-list.md b/docs/guides/core-list.md index 40b3ce805a..b602633625 100644 --- a/docs/guides/core-list.md +++ b/docs/guides/core-list.md @@ -195,10 +195,10 @@ | [Snes9x 2005](https://docs.libretro.com/library/snes9x_2005/) | Nintendo SNES/SFC | | | [Snes9x 2005 Plus](https://docs.libretro.com/library/snes9x_2005_plus/) | Nintendo SNES/SFC | | | [Snes9x 2010](https://docs.libretro.com/library/snes9x_2010/) | Nintendo SNES/SFC | | +| [SPMP8000Emu](../library/spmp8000emu.md) | Sunplus SPMP8000 | An emulator for the Sunplus SPMP8000 game platform used by portable game devices | | SquirrelJME | Java ME | A port of the SquirrelJME Java ME 8 Virtual Machine emulator to libretro | | [Stella](https://docs.libretro.com/library/stella/) | Atari 2600 | | | Stella 2014 | Atari 2600 | | -| [SPMP8000Emu](../library/spmp8000emu.md) | Sunplus SPMP8000 | An emulator for the Sunplus SPMP8000 game platform used by portable game devices | | Super Bros War | Game engine | A fork of Super Mario War, a fan-made multiplayer Super Mario Bros. style deathmatch game | | SwanStation | Sony PlayStation | SwanStation is a fork of the DuckStation emulator | | [TempGBA](https://docs.libretro.com/library/tempgba/) | Game Boy Advance | |