diff options
| author | 2018-05-08 20:07:39 +0700 | |
|---|---|---|
| committer | 2018-05-08 23:07:39 +1000 | |
| commit | 1373f80b74b1174da306533fc1b6364f9b0d2801 (patch) | |
| tree | c1921f5ac8740d2131c353761c8986f43a013248 /scripts | |
| 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')
| -rw-r--r-- | scripts/src/video.lua | 12 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 1 |
2 files changed, 13 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 diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index a72f7e1e4f4..4e1485464c4 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -279,6 +279,7 @@ SOUNDS["UPD934G"] = true VIDEOS["SEGA315_5124"] = true VIDEOS["SEGA315_5313"] = true --VIDEOS+= BUFSPRITE"] = true +VIDEOS["BT45X"] = true VIDEOS["BT459"] = true VIDEOS["CDP1861"] = true VIDEOS["CDP1862"] = true |
