diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/video.lua | 96 |
1 files changed, 48 insertions, 48 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua index 706ef5d485e..6a9037fa240 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -1511,6 +1511,18 @@ end -------------------------------------------------- -- +--@src/devices/video/bt431.h,VIDEOS["BT431"] = true +-------------------------------------------------- + +if (VIDEOS["BT431"]~=null) then + files { + MAME_DIR .. "src/devices/video/bt431.cpp", + MAME_DIR .. "src/devices/video/bt431.h", + } +end + +-------------------------------------------------- +-- --@src/devices/video/bt459.h,VIDEOS["BT459"] = true -------------------------------------------------- @@ -1523,37 +1535,61 @@ end -------------------------------------------------- -- ---@src/devices/video/imagetek_i4100.h,VIDEOS["I4100"] = true +--@src/devices/video/bt45x.h,VIDEOS["BT45X"] = true -------------------------------------------------- -if (VIDEOS["I4100"]~=null) then +if (VIDEOS["BT45X"]~=null) then files { - MAME_DIR .. "src/devices/video/imagetek_i4100.cpp", - MAME_DIR .. "src/devices/video/imagetek_i4100.h", + MAME_DIR .. "src/devices/video/bt45x.cpp", + MAME_DIR .. "src/devices/video/bt45x.h", } end -------------------------------------------------- -- ---@src/devices/video/dp8510.h,VIDEOS["DP8510"] = true +--@src/devices/video/bt47x.h,VIDEOS["BT47X"] = true -------------------------------------------------- -if (VIDEOS["DP8510"]~=null) then +if (VIDEOS["BT47X"]~=null) then files { - MAME_DIR .. "src/devices/video/dp8510.cpp", - MAME_DIR .. "src/devices/video/dp8510.h", + MAME_DIR .. "src/devices/video/bt47x.cpp", + MAME_DIR .. "src/devices/video/bt47x.h", } end -------------------------------------------------- -- ---@src/devices/video/bt45x.h,VIDEOS["BT45X"] = true +--@src/devices/video/bt48x.h,VIDEOS["BT48X"] = true -------------------------------------------------- -if (VIDEOS["BT45X"]~=null) then +if (VIDEOS["BT48X"]~=null) then files { - MAME_DIR .. "src/devices/video/bt45x.cpp", - MAME_DIR .. "src/devices/video/bt45x.h", + MAME_DIR .. "src/devices/video/bt48x.cpp", + MAME_DIR .. "src/devices/video/bt48x.h", + } +end + +-------------------------------------------------- +-- +--@src/devices/video/imagetek_i4100.h,VIDEOS["I4100"] = true +-------------------------------------------------- + +if (VIDEOS["I4100"]~=null) then + files { + MAME_DIR .. "src/devices/video/imagetek_i4100.cpp", + MAME_DIR .. "src/devices/video/imagetek_i4100.h", + } +end + +-------------------------------------------------- +-- +--@src/devices/video/dp8510.h,VIDEOS["DP8510"] = true +-------------------------------------------------- + +if (VIDEOS["DP8510"]~=null) then + files { + MAME_DIR .. "src/devices/video/dp8510.cpp", + MAME_DIR .. "src/devices/video/dp8510.h", } end @@ -1615,30 +1651,6 @@ end -------------------------------------------------- -- ---@src/devices/video/bt47x.h,VIDEOS["BT47X"] = true --------------------------------------------------- - -if (VIDEOS["BT47X"]~=null) then - files { - MAME_DIR .. "src/devices/video/bt47x.cpp", - MAME_DIR .. "src/devices/video/bt47x.h", - } -end - --------------------------------------------------- --- ---@src/devices/video/bt431.h,VIDEOS["BT431"] = true --------------------------------------------------- - -if (VIDEOS["BT431"]~=null) then - files { - MAME_DIR .. "src/devices/video/bt431.cpp", - MAME_DIR .. "src/devices/video/bt431.h", - } -end - --------------------------------------------------- --- --@src/devices/video/vrender0.h,VIDEOS["VRENDER0"] = true -------------------------------------------------- @@ -1684,15 +1696,3 @@ if (VIDEOS["ZR36110"]~=null) then MAME_DIR .. "src/devices/video/zr36110.h", } end - --------------------------------------------------- --- ---@src/devices/video/bt48x.h,VIDEOS["BT48X"] = true --------------------------------------------------- - -if (VIDEOS["BT48X"]~=null) then - files { - MAME_DIR .. "src/devices/video/bt48x.cpp", - MAME_DIR .. "src/devices/video/bt48x.h", - } -end |