diff options
Diffstat (limited to 'docs/release/scripts/src/video.lua')
-rw-r--r-- | docs/release/scripts/src/video.lua | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/docs/release/scripts/src/video.lua b/docs/release/scripts/src/video.lua index b3ca841fde0..e6027140f44 100644 --- a/docs/release/scripts/src/video.lua +++ b/docs/release/scripts/src/video.lua @@ -158,7 +158,6 @@ if (VIDEOS["EF9340_1"]~=null) then files { MAME_DIR .. "src/devices/video/ef9340_1.cpp", MAME_DIR .. "src/devices/video/ef9340_1.h", - MAME_DIR .. "src/devices/video/ef9341_chargen.h", } end @@ -1057,3 +1056,26 @@ 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 + +-------------------------------------------------- +-- +--@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 |