summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/bus.lua2
-rw-r--r--scripts/src/machine.lua14
2 files changed, 16 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index f5be91e7475..c67ee9c9805 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -914,6 +914,8 @@ if (BUSES["IEEE488"]~=null) then
MAME_DIR .. "src/devices/bus/ieee488/hardbox.h",
MAME_DIR .. "src/devices/bus/ieee488/shark.cpp",
MAME_DIR .. "src/devices/bus/ieee488/shark.h",
+ MAME_DIR .. "src/devices/bus/ieee488/hp9122c.cpp",
+ MAME_DIR .. "src/devices/bus/ieee488/hp9122c.h",
MAME_DIR .. "src/devices/bus/ieee488/hp9895.cpp",
MAME_DIR .. "src/devices/bus/ieee488/hp9895.h",
MAME_DIR .. "src/devices/bus/ieee488/remote488.cpp",
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 95c2f99c582..c9f57edf0d4 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -3530,3 +3530,17 @@ if (MACHINES["Z80DAISY"]~=null) then
MAME_DIR .. "src/devices/machine/z80daisy_generic.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/machine/i8291a.h,MACHINES["I8291A"] = true
+---------------------------------------------------
+
+if (MACHINES["I8291A"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/i8291a.cpp",
+ MAME_DIR .. "src/devices/machine/i8291a.h",
+ }
+end
+
+