diff options
| author | 2025-10-23 05:21:29 +0100 | |
|---|---|---|
| committer | 2025-10-23 06:21:29 +0200 | |
| commit | 8c0352c5c687332bee4a0e536627fbd3a572a196 (patch) | |
| tree | e44bcaec33a0ef26397a2f21e3403c8bd2ee5482 /scripts/src/machine.lua | |
| parent | 886f8df6f53c23e8663a6c2ebc4c64a9f6cd78be (diff) | |
current Plug and Play / Handheld set additions (29 parents, 3 clones, 1 softlist entry) (#14327)
- added 29 parents, 3 clones, 1 softlist entry, some boot and are playable but none meet 'working' threshold [David Haywood]
New systems marked not working
------------------------------
PPG Play Portable Game 118 Games (HH-0046) [David Haywood, Team Europe]
Table Game Classic 108-in-1 (KTFC-001B) [David Haywood, Team Europe]
Digital Pocket Hand Held System 268-in-1 - Model 8661 [David Haywood, Team Europe]
IN Motion - Motion Controlled Video Games Console (Hot Game 198 in 1) [David Haywood, Team Europe]
Pokemon Encyclopedia Z Pokemon XY Quiz Game Rotom (Japan) [David Haywood, Team Europe]
D9 500 in 1 Handheld Game Console [David Haywood, Team Europe]
Xingzuo Dianzi Chongwu Ji [David Haywood, Team Europe]
Pokemon Peaceful Place My Pad (Japan) [David Haywood, Team Europe]
Disney & Disney/Pixar Characters Wonderful Sweet PC (Japan) [David Haywood, Team Europe]
Disney & Disney/Pixar Characters Wonderful Dream PC (Japan) [David Haywood, Team Europe]
Asonde Manaberu! Mouse de Click! Anpanman PC (Japan) [David Haywood, Team Europe]
Doraemon Step Up PC (Japan) [David Haywood, Team Europe]
My Arcade Street Fighter II (DGUNL-4184, Nano Player Pro) [Team Europe]
Mouse de Battle!! Kyouryuu Zukan PC (Japan) [David Haywood, Team Europe]
Disney Characters Magical Pad -Girls Lesson- (Japan) [David Haywood, Team Europe]
Mouse de Kisekae! Sumikko Gurashi PC (Japan) [David Haywood, Team Europe]
Mouse de Kisekae! Sumikko Gurashi Premium Plus (Japan) [David Haywood, Team Europe]
Wiii3 TV Entertainment System (7-in-1 Sports) [David Haywood, Team Europe]
Retro TV Game Console - Disney Cars - 300 Games (JG7800DC-1) [David Haywood, Team Europe]
Retro TV Game Console - PJ Masks - 300 Games (JG7800PJM-1) [David Haywood, Team Europe]
Orina Stylish+ (Japan) [David Haywood, Team Europe]
Spica Note (Japan) [David Haywood, Team Europe]
Game & Watch: Super Mario Bros. 35th Anniversary [Team Europe]
Mocchiri Pet Mocchimaruzu (2018 version, set 1) [David Haywood, Team Europe]
Mocchiri Pet Mocchimaruzu (2019 version, set 1) [David Haywood, Team Europe]
Mocchifuwa Pet Mocchimaruzu (set 1) [David Haywood, Team Europe]
Gachitto Get da ze! Monster Ball (Japan) [David Haywood, Team Europe]
Mazemaze Mix! Puni Tapi-chan (Japan) [David Haywood, Team Europe]
ZL-383 400-in-1 Handheld Console [David Haywood, Team Europe]
New clones marked not working
-----------------------------
Mocchiri Pet Mocchimaruzu (2018 version, set 2) [David Haywood, Team Europe]
Mocchiri Pet Mocchimaruzu (2019 version, set 2) [David Haywood, Team Europe]
Mocchifuwa Pet Mocchimaruzu (set 2) [David Haywood, Team Europe]
New software list items marked not working
------------------------------------------
orina_stylish_plus_cart.xml:
Sumikko Gurashi [David Haywood, Team Europe]
- moved around some code related to the SunPlus/GeneralPlus SoC emulation, attempted to better identify what some SoCs are (especially where globs were used) and add some notes for future reference when improving the code / attempting to identify what belongs where [David Haywood]
Diffstat (limited to 'scripts/src/machine.lua')
| -rw-r--r-- | scripts/src/machine.lua | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 50bc6c6c6e9..768d154a47a 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3450,7 +3450,9 @@ end -- --@src/devices/machine/spg2xx.h,MACHINES["SPG2XX"] = true --@src/devices/machine/spg110.h,MACHINES["SPG2XX"] = true ---@src/devices/machine/generalplus_gpl16250soc.h,MACHINES["SPG2XX"] = true +--@src/devices/machine/generalplus_gpl162xx_soc.h,MACHINES["SPG2XX"] = true +--@src/devices/machine/generalplus_gpl1625x_soc.h,MACHINES["SPG2XX"] = true +--@src/devices/machine/generalplus_gpl951xx_soc.h,MACHINES["SPG2XX"] = true --------------------------------------------------- if (MACHINES["SPG2XX"]~=null) then @@ -3469,10 +3471,14 @@ if (MACHINES["SPG2XX"]~=null) then MAME_DIR .. "src/devices/machine/spg110.h", MAME_DIR .. "src/devices/machine/spg110_video.cpp", MAME_DIR .. "src/devices/machine/spg110_video.h", - MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc.cpp", - MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc.h", - MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc_video.cpp", - MAME_DIR .. "src/devices/machine/generalplus_gpl16250soc_video.h", + MAME_DIR .. "src/devices/machine/generalplus_gpl162xx_soc.cpp", + MAME_DIR .. "src/devices/machine/generalplus_gpl162xx_soc.h", + MAME_DIR .. "src/devices/machine/generalplus_gpl1625x_soc.cpp", + MAME_DIR .. "src/devices/machine/generalplus_gpl1625x_soc.h", + MAME_DIR .. "src/devices/machine/generalplus_gpl162xx_soc_video.cpp", + MAME_DIR .. "src/devices/machine/generalplus_gpl162xx_soc_video.h", + MAME_DIR .. "src/devices/machine/generalplus_gpl951xx_soc.cpp", + MAME_DIR .. "src/devices/machine/generalplus_gpl951xx_soc.h", MAME_DIR .. "src/devices/machine/spg_renderer.cpp", MAME_DIR .. "src/devices/machine/spg_renderer.h", } |
