diff options
author | 2018-05-11 23:17:55 +0200 | |
---|---|---|
committer | 2018-05-11 17:17:55 -0400 | |
commit | e6b55ad7a639359d622f540c74485bbd283d1387 (patch) | |
tree | 616b6ec576f46b959e5b5d8019cb7f58bf7d69a2 /scripts/src | |
parent | 718b23d7731556da9769ab6cae5ed65ffe88a509 (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')
-rw-r--r-- | scripts/src/video.lua | 11 |
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 |