summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2017-06-20 21:40:03 -0400
committer arbee <rb6502@users.noreply.github.com>2017-06-20 21:40:03 -0400
commit8bf9290a1e529ec3d590dca42c098a7e82a5155c (patch)
tree625b8729af83134c12c9879eec98075ee01cf8ab /scripts/src
parent4536ab184c2305c92ee59a11308ccd5560c3077b (diff)
hp9k_3xx: preliminary support for DIO and DIO-II buses and 98544 video card. [R. Belmont]
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/bus.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index 1c7a5cb5046..7e420e913b8 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -735,6 +735,19 @@ if (BUSES["HPHIL"]~=null) then
}
end
+---------------------------------------------------
+--
+--@src/devices/bus/hp_dio/hp_dio.h,BUSES["HPDIO"] = true
+---------------------------------------------------
+
+if (BUSES["HPDIO"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/bus/hp_dio/hp_dio.cpp",
+ MAME_DIR .. "src/devices/bus/hp_dio/hp_dio.h",
+ MAME_DIR .. "src/devices/bus/hp_dio/hp98544.cpp",
+ MAME_DIR .. "src/devices/bus/hp_dio/hp98544.h",
+ }
+end
---------------------------------------------------
--