summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/video.lua
diff options
context:
space:
mode:
author Sven Schnelle <svens@stackframe.org>2018-05-11 23:17:55 +0200
committer R. Belmont <rb6502@users.noreply.github.com>2018-05-11 17:17:55 -0400
commite6b55ad7a639359d622f540c74485bbd283d1387 (patch)
tree616b6ec576f46b959e5b5d8019cb7f58bf7d69a2 /scripts/src/video.lua
parent718b23d7731556da9769ab6cae5ed65ffe88a509 (diff)
Add topcat asic (#3558)
* add topcat template HP topcat was an ASIC used on HP900/300 graphics cards. Signed-off-by: Sven Schnelle <svens@stackframe.org> * hook up topcat asic to HP98544 Signed-off-by: Sven Schnelle <svens@stackframe.org> * topcat: add basic configuration macros for fb planes, height and width Signed-off-by: Sven Schnelle <svens@stackframe.org> * hp98544: move logic to topcat video driver Preparation to support multi plane graphic cards like the HP98543/98545/98547. Signed-off-by: Sven Schnelle <svens@stackframe.org> * xtal: add 35.904MHz XTAL
Diffstat (limited to 'scripts/src/video.lua')
-rw-r--r--scripts/src/video.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index 6931f1152e6..0a2dbb23afe 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -1069,3 +1069,14 @@ if (VIDEOS["BT45X"]~=null) then
MAME_DIR .. "src/devices/video/bt45x.h",
}
end
+
+--------------------------------------------------
+--
+--@src/devices/video/topcat.h,VIDEOS["TOPCAT"] = true
+--------------------------------------------------
+if (VIDEOS["TOPCAT"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/video/topcat.cpp",
+ MAME_DIR .. "src/devices/video/topcat.h",
+ }
+end