summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2019-05-05 14:58:45 +0200
committer MooglyGuy <therealmogminer@gmail.com>2019-05-05 14:59:09 +0200
commitd64b1781d78aa644b75974fcf979f48d071c7c48 (patch)
treedb09aa13d7488bda861438712dbd771a159c1130 /scripts
parent2ac59ff8ba106a96635790fc77756735b0c5daaa (diff)
-gio: Added basic SGI GIO slot device support to the Indy and Indigo 2 drivers. [Ryan Holtz]
-newport: Converted to GIO slot device and added 8-bit XL and 24-bit XL board support. [Ryan Holtz]
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/bus.lua15
-rw-r--r--scripts/target/mame/mess.lua3
2 files changed, 16 insertions, 2 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index 26d0f336fed..f13d8c0b6cb 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -953,6 +953,21 @@ end
---------------------------------------------------
--
+--@src/devices/bus/gio/gio.h,BUSES["GIO"] = true
+---------------------------------------------------
+
+if (BUSES["GIO"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/bus/gio/gio.cpp",
+ MAME_DIR .. "src/devices/bus/gio/gio.h",
+ MAME_DIR .. "src/devices/bus/gio/newport.cpp",
+ MAME_DIR .. "src/devices/bus/gio/newport.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/hp_hil/hp_hil.h,BUSES["HPHIL"] = true
---------------------------------------------------
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index cf007676089..d0bdbb6ed6a 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -755,6 +755,7 @@ BUSES["GAMEBOY"] = true
BUSES["GAMEGEAR"] = true
BUSES["GBA"] = true
BUSES["GENERIC"] = true
+BUSES["GIO"] = true
BUSES["HEXBUS"] = true
BUSES["HPHIL"] = true
BUSES["HPDIO"] = true
@@ -3111,8 +3112,6 @@ files {
MAME_DIR .. "src/mame/drivers/indy_indigo2.cpp",
MAME_DIR .. "src/mame/video/light.cpp",
MAME_DIR .. "src/mame/video/light.h",
- MAME_DIR .. "src/mame/video/newport.cpp",
- MAME_DIR .. "src/mame/video/newport.h",
MAME_DIR .. "src/mame/video/crime.cpp",
MAME_DIR .. "src/mame/video/crime.h",
}