summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Sandro Ronco <sandro.ronco@gmx.com>2020-06-11 19:54:45 +0200
committer Sandro Ronco <sandro.ronco@gmx.com>2020-06-11 19:54:45 +0200
commitcdb5ca42c689e4f58e27124c14a4b0fd5a9d05ea (patch)
treecbc83f5d722fde554ade457ba0dea021476e500f /scripts
parent8166769ff9996ce1be30b3e8fdd793e8aae002d6 (diff)
Hyperscan updates: [Sandro Ronco]
- Added emulation of the SPG290 CDServo - Added joypad inputs - Added RFID card support - Split SPG290 PPU, Timers and I2C into separate devices - Added a softlist for the RFID cards
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/machine.lua20
-rw-r--r--scripts/target/mame/mess.lua5
2 files changed, 25 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 621009924f9..266dec7fd49 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -2909,6 +2909,26 @@ end
---------------------------------------------------
--
+--@src/devices/machine/spg290_cdservo.h,MACHINES["SPG290"] = true
+--@src/devices/machine/spg290_timer.h,MACHINES["SPG290"] = true
+--@src/devices/machine/spg290_i2c.h,MACHINES["SPG290"] = true
+--@src/devices/machine/spg290_ppu.h,MACHINES["SPG290"] = true
+---------------------------------------------------
+
+if (MACHINES["SPG290"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/spg290_cdservo.cpp",
+ MAME_DIR .. "src/devices/machine/spg290_cdservo.h",
+ MAME_DIR .. "src/devices/machine/spg290_timer.cpp",
+ MAME_DIR .. "src/devices/machine/spg290_timer.h",
+ MAME_DIR .. "src/devices/machine/spg290_i2c.cpp",
+ MAME_DIR .. "src/devices/machine/spg290_i2c.h",
+ MAME_DIR .. "src/devices/machine/spg290_ppu.cpp",
+ MAME_DIR .. "src/devices/machine/spg290_ppu.h",
+ }
+end
+---------------------------------------------------
+--
--@src/devices/machine/stvcd.h,MACHINES["STVCD"] = true
---------------------------------------------------
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index d31ada36c32..08b3e2c96ff 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -650,6 +650,7 @@ MACHINES["SMIOC"] = true
MACHINES["SEGA_SCU"] = true
MACHINES["SMPC"] = true
MACHINES["SPG2XX"] = true
+MACHINES["SPG290"] = true
MACHINES["STVCD"] = true
MACHINES["SUN4C_MMU"] = true
MACHINES["SWTPC8212"] = true
@@ -3976,6 +3977,10 @@ files {
MAME_DIR .. "src/mame/drivers/spg2xx_smarttv.cpp",
MAME_DIR .. "src/mame/includes/spg2xx.h",
MAME_DIR .. "src/mame/drivers/spg29x.cpp",
+ MAME_DIR .. "src/mame/machine/hyperscan_card.cpp",
+ MAME_DIR .. "src/mame/machine/hyperscan_card.h",
+ MAME_DIR .. "src/mame/machine/hyperscan_ctrl.cpp",
+ MAME_DIR .. "src/mame/machine/hyperscan_ctrl.h",
MAME_DIR .. "src/mame/drivers/spg29x_lexibook_jg7425.cpp",
MAME_DIR .. "src/mame/drivers/generalplus_gpl16250.cpp",
MAME_DIR .. "src/mame/drivers/generalplus_gpl16250_rom.cpp",