diff options
author | 2018-05-08 20:07:39 +0700 | |
---|---|---|
committer | 2018-05-08 23:07:39 +1000 | |
commit | 1373f80b74b1174da306533fc1b6364f9b0d2801 (patch) | |
tree | c1921f5ac8740d2131c353761c8986f43a013248 /scripts/src/video.lua | |
parent | 98702ac870f32469b5b5dd8d14d8cfdef7825c08 (diff) |
bt45x: new devices (#3536)
* bt45x: new devices
Basic implementation of various Brooktree RAMDAC devices. Two of these (bt457, bt458) are used by InterPro graphics boards currently under development, the others are unused/untested at this point.
* bt45x: tweak descriptions (nw)
Diffstat (limited to 'scripts/src/video.lua')
-rw-r--r-- | scripts/src/video.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua index b3ca841fde0..6931f1152e6 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -1057,3 +1057,15 @@ if (VIDEOS["DP8510"]~=null) then MAME_DIR .. "src/devices/video/dp8510.h", } end + +-------------------------------------------------- +-- +--@src/devices/video/bt45x.h,VIDEOS["BT45X"] = true +-------------------------------------------------- + +if (VIDEOS["BT45X"]~=null) then + files { + MAME_DIR .. "src/devices/video/bt45x.cpp", + MAME_DIR .. "src/devices/video/bt45x.h", + } +end |