summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/machine.lua
diff options
context:
space:
mode:
author mamehaze <140764005+mamehaze@users.noreply.github.com>2026-04-21 22:45:15 +0100
committer GitHub <noreply@github.com>2026-04-21 23:45:15 +0200
commit85162043f468c303a779679f1fd897f5cd647a24 (patch)
tree66ef0fbc1f773982629ac52d3c571db8ec953e34 /scripts/src/machine.lua
parent6d498abb0679d35da6727dee1978eb9891800b67 (diff)
generalplus gpce4 refactoring (#15246)
* moved GeneralPlus GPCE4 series SoC emulation from driver file into a device [David Haywood] * begin to flesh out GPCE4 emulation a little more [David Haywood] * move mapacman away from make-believe hookups to something a little more grounded in reality now that the chip has been identified [David Haywood] * added internal ROM for digicolr set, replace with clean dump [Harold Seo] * removed local implementation of LCDC previously used by mapacman and replaced it with the bl_handhelds_lcdc.cpp device, which looks like it's actually a ST7735SV (which is what these use) [David Haywood] * mapacman display is now more stable [David Haywood]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r--scripts/src/machine.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 874842acad6..a63d1b12a82 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -3564,6 +3564,7 @@ end
--@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
+--@src/devices/machine/generalplus_gpce4_soc.h,MACHINES["SPG2XX"] = true
---------------------------------------------------
if MACHINES["SPG2XX"] then
@@ -3590,6 +3591,8 @@ if MACHINES["SPG2XX"] then
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/generalplus_gpce4_soc.cpp",
+ MAME_DIR .. "src/devices/machine/generalplus_gpce4_soc.h",
MAME_DIR .. "src/devices/machine/spg_renderer.cpp",
MAME_DIR .. "src/devices/machine/spg_renderer.h",
MAME_DIR .. "src/devices/machine/gpl_renderer.cpp",