summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2017-10-25 15:39:55 -0400
committer GitHub <noreply@github.com>2017-10-25 15:39:55 -0400
commitfb20279b92232d5bb476f667e48ffb02fafbcb72 (patch)
tree402b9cdb9ae4258aeb8aeeab5d3c23f236117eb4 /scripts
parente4da5dce62931136b07e6105013bc879493de253 (diff)
parentbd7800c9a658e53f87e221ba23b4367da6912b82 (diff)
Merge pull request #2749 from fulivi/hp80_dev04
HP85: support for I/O slots & HP-IB interface module
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/bus.lua12
-rw-r--r--scripts/src/machine.lua12
-rw-r--r--scripts/target/mame/mess.lua2
3 files changed, 26 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index ad79fd7d66c..d838b8bfa2a 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -3164,6 +3164,18 @@ end
---------------------------------------------------
--
+--@src/devices/bus/hp80_io/hp80_io.h,BUSES["HP80_IO"] = true
+---------------------------------------------------
+
+if (BUSES["HP80_IO"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/bus/hp80_io/hp80_io.cpp",
+ MAME_DIR .. "src/devices/bus/hp80_io/82937.cpp",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/bus/hp9845_io/hp9845_io.h,BUSES["HP9845_IO"] = true
---------------------------------------------------
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index f0bb0db561b..d5a30d27756 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -1038,6 +1038,18 @@ end
---------------------------------------------------
--
+--@src/devices/machine/1mb5.h,MACHINES["1MB5"] = true
+---------------------------------------------------
+
+if (MACHINES["1MB5"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/1mb5.cpp",
+ MAME_DIR .. "src/devices/machine/1mb5.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/i2cmem.h,MACHINES["I2CMEM"] = true
---------------------------------------------------
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index 1c1e01aea54..923ef86b342 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -418,6 +418,7 @@ MACHINES["HD63450"] = true
MACHINES["HD64610"] = true
MACHINES["HP_TACO"] = true
MACHINES["1MA6"] = true
+MACHINES["1MB5"] = true
MACHINES["I2CMEM"] = true
MACHINES["I7220"] = true
MACHINES["I80130"] = true
@@ -684,6 +685,7 @@ BUSES["ISA"] = true
BUSES["ISBX"] = true
BUSES["HP_OPTROM"] = true
BUSES["HP80_OPTROM"] = true
+BUSES["HP80_IO"] = true
BUSES["HP9845_IO"] = true
BUSES["KC"] = true
BUSES["LPCI"] = true