summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/video.lua
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2026-01-08 05:06:05 +1100
committer Vas Crabb <vas@vastheman.com>2026-01-08 05:06:05 +1100
commit8364a943ea06e937287a641ef713b810de87fdc1 (patch)
treede5264e99eec1d41a5160e04ed00ccc6992e37c0 /scripts/src/video.lua
parent677c07c79ce8bae400ce4fbdb590e06f5773a911 (diff)
-scripts: Cleaned up devices build scripts a bit:
* Lua considers anything other than null or false to be "truthy". The tests against "null" were comparing to a non-existent global called "null" that evaluated to nil. * Got bus.lua back in alphabetical order and got at least most of the trigger variables aligned with paths. * At least don't put random stuff in the middle of the Acorn devices in machine.lua. -cpu/adsp2100: Corrected some tabulaton that had rotted. -cpu/tms32032: Got rid of some superfluous parentheses. -apple/lisa*.cpp: Added ATTR_COLD on stuff.
Diffstat (limited to 'scripts/src/video.lua')
-rw-r--r--scripts/src/video.lua756
1 files changed, 378 insertions, 378 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index c2818c7338d..486cb7818e3 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -24,7 +24,7 @@ files {
--@src/devices/video/315_5124.h,VIDEOS["SEGA315_5124"] = true
--------------------------------------------------
-if (VIDEOS["SEGA315_5124"]~=null) then
+if VIDEOS["SEGA315_5124"] then
files {
MAME_DIR .. "src/devices/video/315_5124.cpp",
MAME_DIR .. "src/devices/video/315_5124.h",
@@ -36,7 +36,7 @@ end
--@src/devices/video/315_5313.h,VIDEOS["SEGA315_5313"] = true
--------------------------------------------------
-if (VIDEOS["SEGA315_5313"]~=null) then
+if VIDEOS["SEGA315_5313"] then
files {
MAME_DIR .. "src/devices/video/315_5313.cpp",
MAME_DIR .. "src/devices/video/315_5313.h",
@@ -48,7 +48,7 @@ end
--@src/devices/video/ym7101.h,VIDEOS["YM7101"] = true
--------------------------------------------------
-if (VIDEOS["YM7101"]~=null) then
+if VIDEOS["YM7101"] then
files {
MAME_DIR .. "src/devices/video/ym7101.cpp",
MAME_DIR .. "src/devices/video/ym7101.h",
@@ -60,7 +60,7 @@ end
--@src/devices/video/82c425.h,VIDEOS["82C425"] = true
--------------------------------------------------
-if (VIDEOS["82C425"]~=null) then
+if VIDEOS["82C425"] then
files {
MAME_DIR .. "src/devices/video/82c425.cpp",
MAME_DIR .. "src/devices/video/82c425.h",
@@ -72,7 +72,7 @@ end
--@src/devices/video/am8052.h,VIDEOS["AM8052"] = true
--------------------------------------------------
-if (VIDEOS["AM8052"]~=null) then
+if VIDEOS["AM8052"] then
files {
MAME_DIR .. "src/devices/video/am8052.cpp",
MAME_DIR .. "src/devices/video/am8052.h",
@@ -84,7 +84,7 @@ end
--@src/devices/video/ariel.h,VIDEOS["ARIEL"] = true
--------------------------------------------------
-if (VIDEOS["ARIEL"]~=null) then
+if VIDEOS["ARIEL"] then
files {
MAME_DIR .. "src/devices/video/ariel.cpp",
MAME_DIR .. "src/devices/video/ariel.h",
@@ -96,7 +96,7 @@ end
--@src/devices/video/atirage.h,VIDEOS["ATIRAGE"] = true
--------------------------------------------------
-if (VIDEOS["ATIRAGE"]~=null) then
+if VIDEOS["ATIRAGE"] then
files {
MAME_DIR .. "src/devices/video/atirage.cpp",
MAME_DIR .. "src/devices/video/atirage.h",
@@ -105,10 +105,94 @@ end
--------------------------------------------------
--
+--@src/devices/video/avgdvg.h,VIDEOS["AVGDVG"] = true
+--------------------------------------------------
+
+if VIDEOS["AVGDVG"] then
+ files {
+ MAME_DIR .. "src/devices/video/avgdvg.cpp",
+ MAME_DIR .. "src/devices/video/avgdvg.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt431.h,VIDEOS["BT431"] = true
+--------------------------------------------------
+
+if VIDEOS["BT431"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt431.cpp",
+ MAME_DIR .. "src/devices/video/bt431.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt450.h,VIDEOS["BT450"] = true
+--------------------------------------------------
+
+if VIDEOS["BT450"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt450.cpp",
+ MAME_DIR .. "src/devices/video/bt450.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt459.h,VIDEOS["BT459"] = true
+--------------------------------------------------
+
+if VIDEOS["BT459"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt459.cpp",
+ MAME_DIR .. "src/devices/video/bt459.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt45x.h,VIDEOS["BT45X"] = true
+--------------------------------------------------
+
+if VIDEOS["BT45X"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt45x.cpp",
+ MAME_DIR .. "src/devices/video/bt45x.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt47x.h,VIDEOS["BT47X"] = true
+--------------------------------------------------
+
+if VIDEOS["BT47X"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt47x.cpp",
+ MAME_DIR .. "src/devices/video/bt47x.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt48x.h,VIDEOS["BT48X"] = true
+--------------------------------------------------
+
+if VIDEOS["BT48X"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt48x.cpp",
+ MAME_DIR .. "src/devices/video/bt48x.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/bufsprite.h,VIDEOS["BUFSPRITE"] = true
--------------------------------------------------
-if (VIDEOS["BUFSPRITE"]~=null) then
+if VIDEOS["BUFSPRITE"] then
files {
MAME_DIR .. "src/devices/video/bufsprite.cpp",
MAME_DIR .. "src/devices/video/bufsprite.h",
@@ -120,7 +204,7 @@ end
--@src/devices/video/cdp1861.h,VIDEOS["CDP1861"] = true
--------------------------------------------------
-if (VIDEOS["CDP1861"]~=null) then
+if VIDEOS["CDP1861"] then
files {
MAME_DIR .. "src/devices/video/cdp1861.cpp",
MAME_DIR .. "src/devices/video/cdp1861.h",
@@ -132,7 +216,7 @@ end
--@src/devices/video/cdp1862.h,VIDEOS["CDP1862"] = true
--------------------------------------------------
-if (VIDEOS["CDP1862"]~=null) then
+if VIDEOS["CDP1862"] then
files {
MAME_DIR .. "src/devices/video/cdp1862.cpp",
MAME_DIR .. "src/devices/video/cdp1862.h",
@@ -144,7 +228,7 @@ end
--@src/devices/video/cesblit.h,VIDEOS["CESBLIT"] = true
--------------------------------------------------
-if (VIDEOS["CESBLIT"]~=null) then
+if VIDEOS["CESBLIT"] then
files {
MAME_DIR .. "src/devices/video/cesblit.cpp",
MAME_DIR .. "src/devices/video/cesblit.h",
@@ -156,7 +240,7 @@ end
--@src/devices/video/crt9007.h,VIDEOS["CRT9007"] = true
--------------------------------------------------
-if (VIDEOS["CRT9007"]~=null) then
+if VIDEOS["CRT9007"] then
files {
MAME_DIR .. "src/devices/video/crt9007.cpp",
MAME_DIR .. "src/devices/video/crt9007.h",
@@ -168,7 +252,7 @@ end
--@src/devices/video/crt9021.h,VIDEOS["CRT9021"] = true
--------------------------------------------------
-if (VIDEOS["CRT9021"]~=null) then
+if VIDEOS["CRT9021"] then
files {
MAME_DIR .. "src/devices/video/crt9021.cpp",
MAME_DIR .. "src/devices/video/crt9021.h",
@@ -180,7 +264,7 @@ end
--@src/devices/video/crt9028.h,VIDEOS["CRT9028"] = true
--------------------------------------------------
-if (VIDEOS["CRT9028"]~=null) then
+if VIDEOS["CRT9028"] then
files {
MAME_DIR .. "src/devices/video/crt9028.cpp",
MAME_DIR .. "src/devices/video/crt9028.h",
@@ -192,7 +276,7 @@ end
--@src/devices/video/crt9212.h,VIDEOS["CRT9212"] = true
--------------------------------------------------
-if (VIDEOS["CRT9212"]~=null) then
+if VIDEOS["CRT9212"] then
files {
MAME_DIR .. "src/devices/video/crt9212.cpp",
MAME_DIR .. "src/devices/video/crt9212.h",
@@ -204,7 +288,7 @@ end
--@src/devices/video/dl1416.h,VIDEOS["DL1416"] = true
--------------------------------------------------
-if (VIDEOS["DL1416"]~=null) then
+if VIDEOS["DL1416"] then
files {
MAME_DIR .. "src/devices/video/dl1416.cpp",
MAME_DIR .. "src/devices/video/dl1416.h",
@@ -216,7 +300,7 @@ end
--@src/devices/video/dm9368.h,VIDEOS["DM9368"] = true
--------------------------------------------------
-if (VIDEOS["DM9368"]~=null) then
+if VIDEOS["DM9368"] then
files {
MAME_DIR .. "src/devices/video/dm9368.cpp",
MAME_DIR .. "src/devices/video/dm9368.h",
@@ -228,19 +312,31 @@ end
--@src/devices/video/dp8350.h,VIDEOS["DP8350"] = true
--------------------------------------------------
-if (VIDEOS["DP8350"]~=null) then
+if VIDEOS["DP8350"] then
files {
MAME_DIR .. "src/devices/video/dp8350.cpp",
MAME_DIR .. "src/devices/video/dp8350.h",
}
end
+--------------------------------------------------
+--
+--@src/devices/video/dp8510.h,VIDEOS["DP8510"] = true
+--------------------------------------------------
+
+if VIDEOS["DP8510"] then
+ files {
+ MAME_DIR .. "src/devices/video/dp8510.cpp",
+ MAME_DIR .. "src/devices/video/dp8510.h",
+ }
+end
+
---------------------------------------------------
--
--@src/devices/video/ds8874.h,VIDEOS["DS8874"] = true
---------------------------------------------------
-if (VIDEOS["DS8874"]~=null) then
+if VIDEOS["DS8874"] then
files {
MAME_DIR .. "src/devices/video/ds8874.cpp",
MAME_DIR .. "src/devices/video/ds8874.h",
@@ -252,7 +348,7 @@ end
--@src/devices/video/ef9340_1.h,VIDEOS["EF9340_1"] = true
--------------------------------------------------
-if (VIDEOS["EF9340_1"]~=null) then
+if VIDEOS["EF9340_1"] then
files {
MAME_DIR .. "src/devices/video/ef9340_1.cpp",
MAME_DIR .. "src/devices/video/ef9340_1.h",
@@ -264,7 +360,7 @@ end
--@src/devices/video/ef9345.h,VIDEOS["EF9345"] = true
--------------------------------------------------
-if (VIDEOS["EF9345"]~=null) then
+if VIDEOS["EF9345"] then
files {
MAME_DIR .. "src/devices/video/ef9345.cpp",
MAME_DIR .. "src/devices/video/ef9345.h",
@@ -276,7 +372,7 @@ end
--@src/devices/video/ef9364.h,VIDEOS["EF9364"] = true
--------------------------------------------------
-if (VIDEOS["EF9364"]~=null) then
+if VIDEOS["EF9364"] then
files {
MAME_DIR .. "src/devices/video/ef9364.cpp",
MAME_DIR .. "src/devices/video/ef9364.h",
@@ -288,7 +384,7 @@ end
--@src/devices/video/ef9365.h,VIDEOS["EF9365"] = true
--------------------------------------------------
-if (VIDEOS["EF9365"]~=null) then
+if VIDEOS["EF9365"] then
files {
MAME_DIR .. "src/devices/video/ef9365.cpp",
MAME_DIR .. "src/devices/video/ef9365.h",
@@ -297,10 +393,22 @@ end
--------------------------------------------------
--
+--@src/devices/video/ef9369.h,VIDEOS["EF9369"] = true
+--------------------------------------------------
+
+if VIDEOS["EF9369"] then
+ files {
+ MAME_DIR .. "src/devices/video/ef9369.cpp",
+ MAME_DIR .. "src/devices/video/ef9369.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/fixfreq.h,VIDEOS["FIXFREQ"] = true
--------------------------------------------------
-if (VIDEOS["FIXFREQ"]~=null) then
+if VIDEOS["FIXFREQ"] then
files {
MAME_DIR .. "src/devices/video/fixfreq.cpp",
MAME_DIR .. "src/devices/video/fixfreq.h",
@@ -309,37 +417,49 @@ end
--------------------------------------------------
--
---@src/devices/video/gf4500.h,VIDEOS["GF4500"] = true
+--@src/devices/video/gb_lcd.h,VIDEOS["GB_LCD"] = true
--------------------------------------------------
-if (VIDEOS["GF4500"]~=null) then
+if VIDEOS["GB_LCD"] then
files {
- MAME_DIR .. "src/devices/video/gf4500.cpp",
- MAME_DIR .. "src/devices/video/gf4500.h",
+ MAME_DIR .. "src/devices/video/gb_lcd.cpp",
+ MAME_DIR .. "src/devices/video/gb_lcd.h",
}
end
--------------------------------------------------
--
---@src/devices/video/gf7600gs.h,VIDEOS["GF7600GS"] = true
+--@src/devices/video/gba_lcd.h,VIDEOS["GBA_LCD"] = true
--------------------------------------------------
-if (VIDEOS["GF7600GS"]~=null) then
+if VIDEOS["GBA_LCD"] then
files {
- MAME_DIR .. "src/devices/video/gf7600gs.cpp",
- MAME_DIR .. "src/devices/video/gf7600gs.h",
+ MAME_DIR .. "src/devices/video/gba_lcd.cpp",
+ MAME_DIR .. "src/devices/video/gba_lcd.h",
}
end
--------------------------------------------------
--
---@src/devices/video/nt7534.h,VIDEOS["NT7534"] = true
+--@src/devices/video/gf4500.h,VIDEOS["GF4500"] = true
--------------------------------------------------
-if (VIDEOS["NT7534"]~=null) then
+if VIDEOS["GF4500"] then
files {
- MAME_DIR .. "src/devices/video/nt7534.cpp",
- MAME_DIR .. "src/devices/video/nt7534.h",
+ MAME_DIR .. "src/devices/video/gf4500.cpp",
+ MAME_DIR .. "src/devices/video/gf4500.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/gf7600gs.h,VIDEOS["GF7600GS"] = true
+--------------------------------------------------
+
+if VIDEOS["GF7600GS"] then
+ files {
+ MAME_DIR .. "src/devices/video/gf7600gs.cpp",
+ MAME_DIR .. "src/devices/video/gf7600gs.h",
}
end
@@ -348,7 +468,7 @@ end
--@src/devices/video/hd44102.h,VIDEOS["HD44102"] = true
--------------------------------------------------
-if (VIDEOS["HD44102"]~=null) then
+if VIDEOS["HD44102"] then
files {
MAME_DIR .. "src/devices/video/hd44102.cpp",
MAME_DIR .. "src/devices/video/hd44102.h",
@@ -360,7 +480,7 @@ end
--@src/devices/video/hd44352.h,VIDEOS["HD44352"] = true
--------------------------------------------------
-if (VIDEOS["HD44352"]~=null) then
+if VIDEOS["HD44352"] then
files {
MAME_DIR .. "src/devices/video/hd44352.cpp",
MAME_DIR .. "src/devices/video/hd44352.h",
@@ -372,7 +492,7 @@ end
--@src/devices/video/hd44780.h,VIDEOS["HD44780"] = true
--------------------------------------------------
-if (VIDEOS["HD44780"]~=null) then
+if VIDEOS["HD44780"] then
files {
MAME_DIR .. "src/devices/video/hd44780.cpp",
MAME_DIR .. "src/devices/video/hd44780.h",
@@ -384,7 +504,7 @@ end
--@src/devices/video/hd61202.h,VIDEOS["HD61202"] = true
--------------------------------------------------
-if (VIDEOS["HD61202"]~=null) then
+if VIDEOS["HD61202"] then
files {
MAME_DIR .. "src/devices/video/hd61202.cpp",
MAME_DIR .. "src/devices/video/hd61202.h",
@@ -396,7 +516,7 @@ end
--@src/devices/video/hd61602.h,VIDEOS["HD61602"] = true
--------------------------------------------------
-if (VIDEOS["HD61602"]~=null) then
+if VIDEOS["HD61602"] then
files {
MAME_DIR .. "src/devices/video/hd61602.cpp",
MAME_DIR .. "src/devices/video/hd61602.h",
@@ -408,7 +528,7 @@ end
--@src/devices/video/hd61603.h,VIDEOS["HD61603"] = true
--------------------------------------------------
-if (VIDEOS["HD61603"]~=null) then
+if VIDEOS["HD61603"] then
files {
MAME_DIR .. "src/devices/video/hd61603.cpp",
MAME_DIR .. "src/devices/video/hd61603.h",
@@ -420,7 +540,7 @@ end
--@src/devices/video/hd61830.h,VIDEOS["HD61830"] = true
--------------------------------------------------
-if (VIDEOS["HD61830"]~=null) then
+if VIDEOS["HD61830"] then
files {
MAME_DIR .. "src/devices/video/hd61830.cpp",
MAME_DIR .. "src/devices/video/hd61830.h",
@@ -432,7 +552,7 @@ end
--@src/devices/video/hd63484.h,VIDEOS["HD63484"] = true
--------------------------------------------------
-if (VIDEOS["HD63484"]~=null) then
+if VIDEOS["HD63484"] then
files {
MAME_DIR .. "src/devices/video/hd63484.cpp",
MAME_DIR .. "src/devices/video/hd63484.h",
@@ -444,7 +564,7 @@ end
--@src/devices/video/hd66421.h,VIDEOS["HD66421"] = true
--------------------------------------------------
-if (VIDEOS["HD66421"]~=null) then
+if VIDEOS["HD66421"] then
files {
MAME_DIR .. "src/devices/video/hd66421.cpp",
MAME_DIR .. "src/devices/video/hd66421.h",
@@ -456,7 +576,7 @@ end
--@src/devices/video/hlcd0438.h,VIDEOS["HLCD0438"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0438"]~=null) then
+if VIDEOS["HLCD0438"] then
files {
MAME_DIR .. "src/devices/video/hlcd0438.cpp",
MAME_DIR .. "src/devices/video/hlcd0438.h",
@@ -468,7 +588,7 @@ end
--@src/devices/video/hlcd0488.h,VIDEOS["HLCD0488"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0488"]~=null) then
+if VIDEOS["HLCD0488"] then
files {
MAME_DIR .. "src/devices/video/hlcd0488.cpp",
MAME_DIR .. "src/devices/video/hlcd0488.h",
@@ -480,7 +600,7 @@ end
--@src/devices/video/hlcd0515.h,VIDEOS["HLCD0515"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0515"]~=null) then
+if VIDEOS["HLCD0515"] then
files {
MAME_DIR .. "src/devices/video/hlcd0515.cpp",
MAME_DIR .. "src/devices/video/hlcd0515.h",
@@ -492,7 +612,7 @@ end
--@src/devices/video/hlcd0538.h,VIDEOS["HLCD0538"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0538"]~=null) then
+if VIDEOS["HLCD0538"] then
files {
MAME_DIR .. "src/devices/video/hlcd0538.cpp",
MAME_DIR .. "src/devices/video/hlcd0538.h",
@@ -504,7 +624,7 @@ end
--@src/devices/video/hp1ll3.h,VIDEOS["HP1LL3"] = true
--------------------------------------------------
-if (VIDEOS["HP1LL3"]~=null) then
+if VIDEOS["HP1LL3"] then
files {
MAME_DIR .. "src/devices/video/hp1ll3.cpp",
MAME_DIR .. "src/devices/video/hp1ll3.h",
@@ -516,7 +636,7 @@ end
--@src/devices/video/huc6202.h,VIDEOS["HUC6202"] = true
--------------------------------------------------
-if (VIDEOS["HUC6202"]~=null) then
+if VIDEOS["HUC6202"] then
files {
MAME_DIR .. "src/devices/video/huc6202.cpp",
MAME_DIR .. "src/devices/video/huc6202.h",
@@ -528,7 +648,7 @@ end
--@src/devices/video/huc6260.h,VIDEOS["HUC6260"] = true
--------------------------------------------------
-if (VIDEOS["HUC6260"]~=null) then
+if VIDEOS["HUC6260"] then
files {
MAME_DIR .. "src/devices/video/huc6260.cpp",
MAME_DIR .. "src/devices/video/huc6260.h",
@@ -540,7 +660,7 @@ end
--@src/devices/video/huc6261.h,VIDEOS["HUC6261"] = true
--------------------------------------------------
-if (VIDEOS["HUC6261"]~=null) then
+if VIDEOS["HUC6261"] then
files {
MAME_DIR .. "src/devices/video/huc6261.cpp",
MAME_DIR .. "src/devices/video/huc6261.h",
@@ -552,7 +672,7 @@ end
--@src/devices/video/huc6270.h,VIDEOS["HUC6270"] = true
--------------------------------------------------
-if (VIDEOS["HUC6270"]~=null) then
+if VIDEOS["HUC6270"] then
files {
MAME_DIR .. "src/devices/video/huc6270.cpp",
MAME_DIR .. "src/devices/video/huc6270.h",
@@ -564,7 +684,7 @@ end
--@src/devices/video/huc6271.h,VIDEOS["HUC6271"] = true
--------------------------------------------------
-if (VIDEOS["HUC6271"]~=null) then
+if VIDEOS["HUC6271"] then
files {
MAME_DIR .. "src/devices/video/huc6271.cpp",
MAME_DIR .. "src/devices/video/huc6271.h",
@@ -576,7 +696,7 @@ end
--@src/devices/video/huc6272.h,VIDEOS["HUC6272"] = true
--------------------------------------------------
-if (VIDEOS["HUC6272"]~=null) then
+if VIDEOS["HUC6272"] then
files {
MAME_DIR .. "src/devices/video/huc6272.cpp",
MAME_DIR .. "src/devices/video/huc6272.h",
@@ -588,7 +708,7 @@ end
--@src/devices/video/i8244.h,VIDEOS["I8244"] = true
--------------------------------------------------
-if (VIDEOS["I8244"]~=null) then
+if VIDEOS["I8244"] then
files {
MAME_DIR .. "src/devices/video/i8244.cpp",
MAME_DIR .. "src/devices/video/i8244.h",
@@ -600,7 +720,7 @@ end
--@src/devices/video/i82730.h,VIDEOS["I82730"] = true
--------------------------------------------------
-if (VIDEOS["I82730"]~=null) then
+if VIDEOS["I82730"] then
files {
MAME_DIR .. "src/devices/video/i82730.cpp",
MAME_DIR .. "src/devices/video/i82730.h",
@@ -612,7 +732,7 @@ end
--@src/devices/video/i8275.h,VIDEOS["I8275"] = true
--------------------------------------------------
-if (VIDEOS["I8275"]~=null) then
+if VIDEOS["I8275"] then
files {
MAME_DIR .. "src/devices/video/i8275.cpp",
MAME_DIR .. "src/devices/video/i8275.h",
@@ -624,7 +744,7 @@ end
--@src/devices/video/ims_cvc.h,VIDEOS["IMS_CVC"] = true
--------------------------------------------------
-if (VIDEOS["IMS_CVC"]~=null) then
+if VIDEOS["IMS_CVC"] then
files {
MAME_DIR .. "src/devices/video/ims_cvc.cpp",
MAME_DIR .. "src/devices/video/ims_cvc.h",
@@ -633,10 +753,22 @@ end
--------------------------------------------------
--
+--@src/devices/video/jangou_blitter.h,VIDEOS["JANGOU_BLITTER"] = true
+--------------------------------------------------
+
+if VIDEOS["JANGOU_BLITTER"] then
+ files {
+ MAME_DIR .. "src/devices/video/jangou_blitter.cpp",
+ MAME_DIR .. "src/devices/video/jangou_blitter.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/k051316.h,VIDEOS["K051316"] = true
--------------------------------------------------
-if (VIDEOS["K051316"]~=null) then
+if VIDEOS["K051316"] then
files {
MAME_DIR .. "src/devices/video/k051316.cpp",
MAME_DIR .. "src/devices/video/k051316.h",
@@ -648,7 +780,7 @@ end
--@src/devices/video/k053936.h,VIDEOS["K053936"] = true
--------------------------------------------------
-if (VIDEOS["K053936"]~=null) then
+if VIDEOS["K053936"] then
files {
MAME_DIR .. "src/devices/video/k053936.cpp",
MAME_DIR .. "src/devices/video/k053936.h",
@@ -660,7 +792,7 @@ end
--@src/devices/video/lc7580.h,VIDEOS["LC7580"] = true
--------------------------------------------------
-if (VIDEOS["LC7580"]~=null) then
+if VIDEOS["LC7580"] then
files {
MAME_DIR .. "src/devices/video/lc7580.cpp",
MAME_DIR .. "src/devices/video/lc7580.h",
@@ -672,7 +804,7 @@ end
--@src/devices/video/lc7985.h,VIDEOS["LC7985"] = true
--------------------------------------------------
-if (VIDEOS["LC7985"]~=null) then
+if VIDEOS["LC7985"] then
files {
MAME_DIR .. "src/devices/video/lc7985.cpp",
MAME_DIR .. "src/devices/video/lc7985.h",
@@ -684,7 +816,7 @@ end
--@src/devices/video/m50458.h,VIDEOS["M50458"] = true
--------------------------------------------------
-if (VIDEOS["M50458"]~=null) then
+if VIDEOS["M50458"] then
files {
MAME_DIR .. "src/devices/video/m50458.cpp",
MAME_DIR .. "src/devices/video/m50458.h",
@@ -696,7 +828,7 @@ end
--@src/devices/video/mb86292.h,VIDEOS["MB86292"] = true
---------------------------------------------------
-if (VIDEOS["MB86292"]~=null) then
+if VIDEOS["MB86292"] then
files {
MAME_DIR .. "src/devices/video/mb86292.cpp",
MAME_DIR .. "src/devices/video/mb86292.h",
@@ -708,7 +840,7 @@ end
--@src/devices/video/mb88303.h,VIDEOS["MB88303"] = true
---------------------------------------------------
-if (VIDEOS["MB88303"]~=null) then
+if VIDEOS["MB88303"] then
files {
MAME_DIR .. "src/devices/video/mb88303.cpp",
MAME_DIR .. "src/devices/video/mb88303.h",
@@ -720,7 +852,7 @@ end
--@src/devices/video/mb90082.h,VIDEOS["MB90082"] = true
--------------------------------------------------
-if (VIDEOS["MB90082"]~=null) then
+if VIDEOS["MB90082"] then
files {
MAME_DIR .. "src/devices/video/mb90082.cpp",
MAME_DIR .. "src/devices/video/mb90082.h",
@@ -732,7 +864,7 @@ end
--@src/devices/video/mb_vcu.h,VIDEOS["MB_VCU"] = true
--------------------------------------------------
-if (VIDEOS["MB_VCU"]~=null) then
+if VIDEOS["MB_VCU"] then
files {
MAME_DIR .. "src/devices/video/mb_vcu.cpp",
MAME_DIR .. "src/devices/video/mb_vcu.h",
@@ -744,7 +876,7 @@ end
--@src/devices/video/mc68328lcd.h,VIDEOS["MC68328LCD"] = true
--------------------------------------------------
-if (VIDEOS["MC68328LCD"]~=null) then
+if VIDEOS["MC68328LCD"] then
files {
MAME_DIR .. "src/devices/video/mc68328lcd.cpp",
MAME_DIR .. "src/devices/video/mc68328lcd.h",
@@ -756,7 +888,7 @@ end
--@src/devices/video/mc6845.h,VIDEOS["MC6845"] = true
--------------------------------------------------
-if (VIDEOS["MC6845"]~=null) then
+if VIDEOS["MC6845"] then
files {
MAME_DIR .. "src/devices/video/mc6845.cpp",
MAME_DIR .. "src/devices/video/mc6845.h",
@@ -768,7 +900,7 @@ end
--@src/devices/video/mc6847.h,VIDEOS["MC6847"] = true
--------------------------------------------------
-if (VIDEOS["MC6847"]~=null) then
+if VIDEOS["MC6847"] then
files {
MAME_DIR .. "src/devices/video/mc6847.cpp",
MAME_DIR .. "src/devices/video/mc6847.h",
@@ -780,7 +912,7 @@ end
--@src/devices/video/md4330b.h,VIDEOS["MD4330B"] = true
--------------------------------------------------
-if (VIDEOS["MD4330B"]~=null) then
+if VIDEOS["MD4330B"] then
files {
MAME_DIR .. "src/devices/video/md4330b.cpp",
MAME_DIR .. "src/devices/video/md4330b.h",
@@ -792,7 +924,7 @@ end
--@src/devices/video/mm5445.h,VIDEOS["MM5445"] = true
--------------------------------------------------
-if (VIDEOS["MM5445"]~=null) then
+if VIDEOS["MM5445"] then
files {
MAME_DIR .. "src/devices/video/mm5445.cpp",
MAME_DIR .. "src/devices/video/mm5445.h",
@@ -801,73 +933,85 @@ end
--------------------------------------------------
--
---@src/devices/video/mr9735.h,VIDEOS["MR9735"] = true
+--@src/devices/video/mn1252.h,VIDEOS["MN1252"] = true
--------------------------------------------------
-if (VIDEOS["MR9735"]~=null) then
+if VIDEOS["MN1252"] then
files {
- MAME_DIR .. "src/devices/video/mr9735.cpp",
- MAME_DIR .. "src/devices/video/mr9735.h",
+ MAME_DIR .. "src/devices/video/mn1252.cpp",
+ MAME_DIR .. "src/devices/video/mn1252.h",
}
end
--------------------------------------------------
--
---@src/devices/video/msm6222b.h,VIDEOS["MSM6222B"] = true
+--@src/devices/video/mos6566.h,VIDEOS["MOS6566"] = true
--------------------------------------------------
-if (VIDEOS["MSM6222B"]~=null) then
+if VIDEOS["MOS6566"] then
files {
- MAME_DIR .. "src/devices/video/msm6222b.cpp",
- MAME_DIR .. "src/devices/video/msm6222b.h",
+ MAME_DIR .. "src/devices/video/mos6566.cpp",
+ MAME_DIR .. "src/devices/video/mos6566.h",
}
end
--------------------------------------------------
--
---@src/devices/video/msm6255.h,VIDEOS["MSM6255"] = true
+--@src/devices/video/mos8563.h,VIDEOS["MOS8563"] = true
--------------------------------------------------
-if (VIDEOS["MSM6255"]~=null) then
+if VIDEOS["MOS8563"] then
files {
- MAME_DIR .. "src/devices/video/msm6255.cpp",
- MAME_DIR .. "src/devices/video/msm6255.h",
+ MAME_DIR .. "src/devices/video/mos8563.cpp",
+ MAME_DIR .. "src/devices/video/mos8563.h",
}
end
--------------------------------------------------
--
---@src/devices/video/mos6566.h,VIDEOS["MOS6566"] = true
+--@src/devices/video/mr9735.h,VIDEOS["MR9735"] = true
--------------------------------------------------
-if (VIDEOS["MOS6566"]~=null) then
+if VIDEOS["MR9735"] then
files {
- MAME_DIR .. "src/devices/video/mos6566.cpp",
- MAME_DIR .. "src/devices/video/mos6566.h",
+ MAME_DIR .. "src/devices/video/mr9735.cpp",
+ MAME_DIR .. "src/devices/video/mr9735.h",
}
end
--------------------------------------------------
--
---@src/devices/video/mos8563.h,VIDEOS["MOS8563"] = true
+--@src/devices/video/msm6222b.h,VIDEOS["MSM6222B"] = true
--------------------------------------------------
-if (VIDEOS["MOS8563"]~=null) then
+if VIDEOS["MSM6222B"] then
files {
- MAME_DIR .. "src/devices/video/mos8563.cpp",
- MAME_DIR .. "src/devices/video/mos8563.h",
+ MAME_DIR .. "src/devices/video/msm6222b.cpp",
+ MAME_DIR .. "src/devices/video/msm6222b.h",
}
end
--------------------------------------------------
--
---@src/devices/video/mn1252.h,VIDEOS["MN1252"] = true
+--@src/devices/video/msm6255.h,VIDEOS["MSM6255"] = true
--------------------------------------------------
-if (VIDEOS["MN1252"]~=null) then
+if VIDEOS["MSM6255"] then
files {
- MAME_DIR .. "src/devices/video/mn1252.cpp",
- MAME_DIR .. "src/devices/video/mn1252.h",
+ MAME_DIR .. "src/devices/video/msm6255.cpp",
+ MAME_DIR .. "src/devices/video/msm6255.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/nt7534.h,VIDEOS["NT7534"] = true
+--------------------------------------------------
+
+if VIDEOS["NT7534"] then
+ files {
+ MAME_DIR .. "src/devices/video/nt7534.cpp",
+ MAME_DIR .. "src/devices/video/nt7534.h",
}
end
@@ -876,7 +1020,7 @@ end
--@src/devices/video/pc_vga.h,VIDEOS["PC_VGA"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA"]~=null) then
+if VIDEOS["PC_VGA"] then
files {
MAME_DIR .. "src/devices/video/pc_vga.cpp",
MAME_DIR .. "src/devices/video/pc_vga.h",
@@ -888,7 +1032,7 @@ end
--@src/devices/video/pc_vga_alliance.h,VIDEOS["PC_VGA_ALLIANCE"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_ALLIANCE"]~=null) then
+if VIDEOS["PC_VGA_ALLIANCE"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_alliance.cpp",
MAME_DIR .. "src/devices/video/pc_vga_alliance.h",
@@ -900,7 +1044,7 @@ end
--@src/devices/video/pc_vga_ati.h,VIDEOS["PC_VGA_ATI"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_ATI"]~=null) then
+if VIDEOS["PC_VGA_ATI"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_ati.cpp",
MAME_DIR .. "src/devices/video/pc_vga_ati.h",
@@ -912,7 +1056,7 @@ end
--@src/devices/video/ibm8514a.h,VIDEOS["IBM8514A"] = true
--------------------------------------------------
-if (VIDEOS["IBM8514A"]~=null) then
+if VIDEOS["IBM8514A"] then
files {
MAME_DIR .. "src/devices/video/ibm8514a.cpp",
MAME_DIR .. "src/devices/video/ibm8514a.h",
@@ -924,7 +1068,7 @@ end
--@src/devices/video/ati_mach8.h,VIDEOS["ATI_MACH8"] = true
--------------------------------------------------
-if (VIDEOS["ATI_MACH8"]~=null) then
+if VIDEOS["ATI_MACH8"] then
files {
MAME_DIR .. "src/devices/video/ati_mach8.cpp",
MAME_DIR .. "src/devices/video/ati_mach8.h",
@@ -936,7 +1080,7 @@ end
--@src/devices/video/ati_mach8.h,VIDEOS["ATI_MACH32"] = true
--------------------------------------------------
-if (VIDEOS["ATI_MACH32"]~=null) then
+if VIDEOS["ATI_MACH32"] then
files {
MAME_DIR .. "src/devices/video/ati_mach32.cpp",
MAME_DIR .. "src/devices/video/ati_mach32.h",
@@ -948,7 +1092,7 @@ end
--@src/devices/video/pc_vga_cirrus.h,VIDEOS["PC_VGA_CIRRUS"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_CIRRUS"]~=null) then
+if VIDEOS["PC_VGA_CIRRUS"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_cirrus.cpp",
MAME_DIR .. "src/devices/video/pc_vga_cirrus.h",
@@ -960,7 +1104,7 @@ end
--@src/devices/video/pc_vga_matrox.h,VIDEOS["PC_VGA_MATROX"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_MATROX"]~=null) then
+if VIDEOS["PC_VGA_MATROX"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_matrox.cpp",
MAME_DIR .. "src/devices/video/pc_vga_matrox.h",
@@ -972,7 +1116,7 @@ end
--@src/devices/video/pc_vga_mediagx.h,VIDEOS["PC_VGA_MEDIAGX"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_MEDIAGX"]~=null) then
+if VIDEOS["PC_VGA_MEDIAGX"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_mediagx.cpp",
MAME_DIR .. "src/devices/video/pc_vga_mediagx.h",
@@ -984,7 +1128,7 @@ end
--@src/devices/video/pc_vga_nvidia.h,VIDEOS["PC_VGA_NVIDIA"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_NVIDIA"]~=null) then
+if VIDEOS["PC_VGA_NVIDIA"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_nvidia.cpp",
MAME_DIR .. "src/devices/video/pc_vga_nvidia.h",
@@ -996,7 +1140,7 @@ end
--@src/devices/video/pc_vga_oak.h,VIDEOS["PC_VGA_OAK"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_OAK"]~=null) then
+if VIDEOS["PC_VGA_OAK"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_oak.cpp",
MAME_DIR .. "src/devices/video/pc_vga_oak.h",
@@ -1008,7 +1152,7 @@ end
--@src/devices/video/pc_vga_paradise.h,VIDEOS["PC_VGA_PARADISE"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_PARADISE"]~=null) then
+if VIDEOS["PC_VGA_PARADISE"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_paradise.cpp",
MAME_DIR .. "src/devices/video/pc_vga_paradise.h",
@@ -1020,7 +1164,7 @@ end
--@src/devices/video/wd90c26.h,VIDEOS["WD90C26"] = true
--------------------------------------------------
-if (VIDEOS["WD90C26"]~=null) then
+if VIDEOS["WD90C26"] then
files {
MAME_DIR .. "src/devices/video/wd90c26.cpp",
MAME_DIR .. "src/devices/video/wd90c26.h",
@@ -1032,7 +1176,7 @@ end
--@src/devices/video/pc_vga_s3.h,VIDEOS["PC_VGA_S3"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_S3"]~=null) then
+if VIDEOS["PC_VGA_S3"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_s3.cpp",
MAME_DIR .. "src/devices/video/pc_vga_s3.h",
@@ -1044,7 +1188,7 @@ end
--@src/devices/video/s3virge.h,VIDEOS["S3VIRGE"] = true
--------------------------------------------------
-if (VIDEOS["S3VIRGE"]~=null) then
+if VIDEOS["S3VIRGE"] then
files {
MAME_DIR .. "src/devices/video/s3virge.cpp",
MAME_DIR .. "src/devices/video/s3virge.h",
@@ -1056,7 +1200,7 @@ end
--@src/devices/video/pc_vga_sis.h,VIDEOS["PC_VGA_SIS"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_SIS"]~=null) then
+if VIDEOS["PC_VGA_SIS"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_sis.cpp",
MAME_DIR .. "src/devices/video/pc_vga_sis.h",
@@ -1068,7 +1212,7 @@ end
--@src/devices/video/pc_vga_trident.h,VIDEOS["PC_VGA_TRIDENT"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_TRIDENT"]~=null) then
+if VIDEOS["PC_VGA_TRIDENT"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_trident.cpp",
MAME_DIR .. "src/devices/video/pc_vga_trident.h",
@@ -1080,7 +1224,7 @@ end
--@src/devices/video/pc_vga_tseng.h,VIDEOS["PC_VGA_TSENG"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_TSENG"]~=null) then
+if VIDEOS["PC_VGA_TSENG"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_tseng.cpp",
MAME_DIR .. "src/devices/video/pc_vga_tseng.h",
@@ -1092,7 +1236,7 @@ end
--@src/devices/video/pc_xga.h,VIDEOS["PC_XGA"] = true
--------------------------------------------------
-if (VIDEOS["PC_XGA"]~=null) then
+if VIDEOS["PC_XGA"] then
files {
MAME_DIR .. "src/devices/video/pc_xga.cpp",
MAME_DIR .. "src/devices/video/pc_xga.h",
@@ -1105,7 +1249,7 @@ end
--@src/devices/video/pcd8544.h,VIDEOS["PCD8544"] = true
--------------------------------------------------
-if (VIDEOS["PCD8544"]~=null) then
+if VIDEOS["PCD8544"] then
files {
MAME_DIR .. "src/devices/video/pcd8544.cpp",
MAME_DIR .. "src/devices/video/pcd8544.h",
@@ -1117,7 +1261,7 @@ end
--@src/devices/video/pcf2100.h,VIDEOS["PCF2100"] = true
--------------------------------------------------
-if (VIDEOS["PCF2100"]~=null) then
+if VIDEOS["PCF2100"] then
files {
MAME_DIR .. "src/devices/video/pcf2100.cpp",
MAME_DIR .. "src/devices/video/pcf2100.h",
@@ -1126,10 +1270,48 @@ end
--------------------------------------------------
--
+--@src/devices/video/ppu2c0x.h,VIDEOS["PPU2C0X"] = true
+--------------------------------------------------
+
+if VIDEOS["PPU2C0X"] then
+ files {
+ MAME_DIR .. "src/devices/video/ppu2c0x.cpp",
+ MAME_DIR .. "src/devices/video/ppu2c0x.h",
+ MAME_DIR .. "src/devices/video/ppu2c0x_vt.cpp",
+ MAME_DIR .. "src/devices/video/ppu2c0x_vt.h",
+ MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.cpp",
+ MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/ps2gif.h,VIDEOS["PS2GIF"] = true
+--------------------------------------------------
+if VIDEOS["PS2GIF"] then
+ files {
+ MAME_DIR .. "src/devices/video/ps2gif.cpp",
+ MAME_DIR .. "src/devices/video/ps2gif.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/ps2gs.h,VIDEOS["PS2GS"] = true
+--------------------------------------------------
+if VIDEOS["PS2GS"] then
+ files {
+ MAME_DIR .. "src/devices/video/ps2gs.cpp",
+ MAME_DIR .. "src/devices/video/ps2gs.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/psx.h,VIDEOS["PSX"] = true
--------------------------------------------------
-if (VIDEOS["PSX"]~=null) then
+if VIDEOS["PSX"] then
files {
MAME_DIR .. "src/devices/video/psx.cpp",
MAME_DIR .. "src/devices/video/psx.h",
@@ -1138,10 +1320,21 @@ end
--------------------------------------------------
--
+--@src/devices/video/pwm.h,VIDEOS["PWM_DISPLAY"] = true
+--------------------------------------------------
+if VIDEOS["PWM_DISPLAY"] then
+ files {
+ MAME_DIR .. "src/devices/video/pwm.cpp",
+ MAME_DIR .. "src/devices/video/pwm.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/ramdac.h,VIDEOS["RAMDAC"] = true
--------------------------------------------------
-if (VIDEOS["RAMDAC"]~=null) then
+if VIDEOS["RAMDAC"] then
files {
MAME_DIR .. "src/devices/video/ramdac.cpp",
MAME_DIR .. "src/devices/video/ramdac.h",
@@ -1153,7 +1346,7 @@ end
--@src/devices/video/roc10937.h,VIDEOS["ROC10937"] = true
---------------------------------------------------
-if (VIDEOS["ROC10937"]~=null) then
+if VIDEOS["ROC10937"] then
files {
MAME_DIR .. "src/devices/video/roc10937.cpp",
MAME_DIR .. "src/devices/video/roc10937.h",
@@ -1165,7 +1358,7 @@ end
--@src/devices/video/saa5050.h,VIDEOS["SAA5050"] = true
--------------------------------------------------
-if (VIDEOS["SAA5050"]~=null) then
+if VIDEOS["SAA5050"] then
files {
MAME_DIR .. "src/devices/video/saa5050.cpp",
MAME_DIR .. "src/devices/video/saa5050.h",
@@ -1177,7 +1370,7 @@ end
--@src/devices/video/saa5240.h,VIDEOS["SAA5240"] = true
--------------------------------------------------
-if (VIDEOS["SAA5240"]~=null) then
+if VIDEOS["SAA5240"] then
files {
MAME_DIR .. "src/devices/video/saa5240.cpp",
MAME_DIR .. "src/devices/video/saa5240.h",
@@ -1189,7 +1382,7 @@ end
--@src/devices/video/saa7110.h,VIDEOS["SAA7110"] = true
--------------------------------------------------
-if (VIDEOS["SAA7110"]~=null) then
+if VIDEOS["SAA7110"] then
files {
MAME_DIR .. "src/devices/video/saa7110.cpp",
MAME_DIR .. "src/devices/video/saa7110.h",
@@ -1198,24 +1391,23 @@ end
--------------------------------------------------
--
---@src/devices/video/sn74s262.h,VIDEOS["SN74S262"] = true
+--@src/devices/video/scn2674.h,VIDEOS["SCN2674"] = true
--------------------------------------------------
-
-if (VIDEOS["SN74S262"]~=null) then
+if VIDEOS["SCN2674"] then
files {
- MAME_DIR .. "src/devices/video/sn74s262.cpp",
- MAME_DIR .. "src/devices/video/sn74s262.h",
+ MAME_DIR .. "src/devices/video/scn2674.cpp",
+ MAME_DIR .. "src/devices/video/scn2674.h",
}
end
--------------------------------------------------
--
---@src/devices/video/pwm.h,VIDEOS["PWM_DISPLAY"] = true
+--@src/devices/video/sda5708.h,VIDEOS["SDA5708"] = true
--------------------------------------------------
-if (VIDEOS["PWM_DISPLAY"]~=null) then
+if VIDEOS["SDA5708"] then
files {
- MAME_DIR .. "src/devices/video/pwm.cpp",
- MAME_DIR .. "src/devices/video/pwm.h",
+ MAME_DIR .. "src/devices/video/sda5708.cpp",
+ MAME_DIR .. "src/devices/video/sda5708.h",
}
end
@@ -1223,7 +1415,7 @@ end
--
--@src/devices/video/sed1200.h,VIDEOS["SED1200"] = true
--------------------------------------------------
-if (VIDEOS["SED1200"]~=null) then
+if VIDEOS["SED1200"] then
files {
MAME_DIR .. "src/devices/video/sed1200.cpp",
MAME_DIR .. "src/devices/video/sed1200.h",
@@ -1234,7 +1426,7 @@ end
--
--@src/devices/video/sed1330.h,VIDEOS["SED1330"] = true
--------------------------------------------------
-if (VIDEOS["SED1330"]~=null) then
+if VIDEOS["SED1330"] then
files {
MAME_DIR .. "src/devices/video/sed1330.cpp",
MAME_DIR .. "src/devices/video/sed1330.h",
@@ -1245,7 +1437,7 @@ end
--
--@src/devices/video/sed1356.h,VIDEOS["SED1356"] = true
--------------------------------------------------
-if (VIDEOS["SED1356"]~=null) then
+if VIDEOS["SED1356"] then
files {
MAME_DIR .. "src/devices/video/sed1356.cpp",
MAME_DIR .. "src/devices/video/sed1356.h",
@@ -1256,7 +1448,7 @@ end
--
--@src/devices/video/sed1375.h,VIDEOS["SED1375"] = true
--------------------------------------------------
-if (VIDEOS["SED1375"]~=null) then
+if VIDEOS["SED1375"] then
files {
MAME_DIR .. "src/devices/video/sed1375.cpp",
MAME_DIR .. "src/devices/video/sed1375.h",
@@ -1267,7 +1459,7 @@ end
--
--@src/devices/video/sed1500.h,VIDEOS["SED1500"] = true
--------------------------------------------------
-if (VIDEOS["SED1500"]~=null) then
+if VIDEOS["SED1500"] then
files {
MAME_DIR .. "src/devices/video/sed1500.cpp",
MAME_DIR .. "src/devices/video/sed1500.h",
@@ -1278,7 +1470,7 @@ end
--
--@src/devices/video/sed1520.h,VIDEOS["SED1520"] = true
--------------------------------------------------
-if (VIDEOS["SED1520"]~=null) then
+if VIDEOS["SED1520"] then
files {
MAME_DIR .. "src/devices/video/sed1520.cpp",
MAME_DIR .. "src/devices/video/sed1520.h",
@@ -1287,34 +1479,36 @@ end
--------------------------------------------------
--
---@src/devices/video/scn2674.h,VIDEOS["SCN2674"] = true
+--@src/devices/video/sn74s262.h,VIDEOS["SN74S262"] = true
--------------------------------------------------
-if (VIDEOS["SCN2674"]~=null) then
+
+if VIDEOS["SN74S262"] then
files {
- MAME_DIR .. "src/devices/video/scn2674.cpp",
- MAME_DIR .. "src/devices/video/scn2674.h",
+ MAME_DIR .. "src/devices/video/sn74s262.cpp",
+ MAME_DIR .. "src/devices/video/sn74s262.h",
}
end
--------------------------------------------------
--
---@src/devices/video/sda5708.h,VIDEOS["SDA5708"] = true
+--@src/devices/video/snes_ppu.h,VIDEOS["SNES_PPU"] = true
--------------------------------------------------
-if (VIDEOS["SDA5708"]~=null) then
+if VIDEOS["SNES_PPU"] then
files {
- MAME_DIR .. "src/devices/video/sda5708.cpp",
- MAME_DIR .. "src/devices/video/sda5708.h",
+ MAME_DIR .. "src/devices/video/snes_ppu.cpp",
+ MAME_DIR .. "src/devices/video/snes_ppu.h",
}
end
--------------------------------------------------
--
---@src/devices/video/snes_ppu.h,VIDEOS["SNES_PPU"] = true
+--@src/devices/video/st7626.h,VIDEOS["ST7626"] = true
--------------------------------------------------
-if (VIDEOS["SNES_PPU"]~=null) then
+
+if VIDEOS["ST7626"] then
files {
- MAME_DIR .. "src/devices/video/snes_ppu.cpp",
- MAME_DIR .. "src/devices/video/snes_ppu.h",
+ MAME_DIR .. "src/devices/video/st7626.cpp",
+ MAME_DIR .. "src/devices/video/st7626.h",
}
end
@@ -1323,7 +1517,7 @@ end
--@src/devices/video/t6963c.h,VIDEOS["T6963C"] = true
--------------------------------------------------
-if (VIDEOS["T6963C"]~=null) then
+if VIDEOS["T6963C"] then
files {
MAME_DIR .. "src/devices/video/t6963c.cpp",
MAME_DIR .. "src/devices/video/t6963c.h",
@@ -1335,7 +1529,7 @@ end
--@src/devices/video/t6a04.h,VIDEOS["T6A04"] = true
--------------------------------------------------
-if (VIDEOS["T6A04"]~=null) then
+if VIDEOS["T6A04"] then
files {
MAME_DIR .. "src/devices/video/t6a04.cpp",
MAME_DIR .. "src/devices/video/t6a04.h",
@@ -1347,7 +1541,7 @@ end
--@src/devices/video/tea1002.h,VIDEOS["TEA1002"] = true
--------------------------------------------------
-if (VIDEOS["TEA1002"]~=null) then
+if VIDEOS["TEA1002"] then
files {
MAME_DIR .. "src/devices/video/tea1002.cpp",
MAME_DIR .. "src/devices/video/tea1002.h",
@@ -1359,7 +1553,7 @@ end
--@src/devices/video/tlc34076.h,VIDEOS["TLC34076"] = true
--------------------------------------------------
-if (VIDEOS["TLC34076"]~=null) then
+if VIDEOS["TLC34076"] then
files {
MAME_DIR .. "src/devices/video/tlc34076.cpp",
MAME_DIR .. "src/devices/video/tlc34076.h",
@@ -1371,7 +1565,7 @@ end
--@src/devices/video/tmap038.h,VIDEOS["TMAP038"] = true
--------------------------------------------------
-if (VIDEOS["TMAP038"]~=null) then
+if VIDEOS["TMAP038"] then
files {
MAME_DIR .. "src/devices/video/tmap038.cpp",
MAME_DIR .. "src/devices/video/tmap038.h",
@@ -1383,7 +1577,7 @@ end
--@src/devices/video/tms34061.h,VIDEOS["TMS34061"] = true
--------------------------------------------------
-if (VIDEOS["TMS34061"]~=null) then
+if VIDEOS["TMS34061"] then
files {
MAME_DIR .. "src/devices/video/tms34061.cpp",
MAME_DIR .. "src/devices/video/tms34061.h",
@@ -1395,7 +1589,7 @@ end
--@src/devices/video/tms3556.h,VIDEOS["TMS3556"] = true
--------------------------------------------------
-if (VIDEOS["TMS3556"]~=null) then
+if VIDEOS["TMS3556"] then
files {
MAME_DIR .. "src/devices/video/tms3556.cpp",
MAME_DIR .. "src/devices/video/tms3556.h",
@@ -1407,7 +1601,7 @@ end
--@src/devices/video/tms9927.h,VIDEOS["TMS9927"] = true
--------------------------------------------------
-if (VIDEOS["TMS9927"]~=null) then
+if VIDEOS["TMS9927"] then
files {
MAME_DIR .. "src/devices/video/tms9927.cpp",
MAME_DIR .. "src/devices/video/tms9927.h",
@@ -1419,7 +1613,7 @@ end
--@src/devices/video/tms9928a.h,VIDEOS["TMS9928A"] = true
--------------------------------------------------
-if (VIDEOS["TMS9928A"]~=null) then
+if VIDEOS["TMS9928A"] then
files {
MAME_DIR .. "src/devices/video/tms9928a.cpp",
MAME_DIR .. "src/devices/video/tms9928a.h",
@@ -1431,7 +1625,7 @@ end
--@src/devices/video/upd3301.h,VIDEOS["UPD3301"] = true
--------------------------------------------------
-if (VIDEOS["UPD3301"]~=null) then
+if VIDEOS["UPD3301"] then
files {
MAME_DIR .. "src/devices/video/upd3301.cpp",
MAME_DIR .. "src/devices/video/upd3301.h",
@@ -1443,7 +1637,7 @@ end
--@src/devices/video/upd7220.h,VIDEOS["UPD7220"] = true
--------------------------------------------------
-if (VIDEOS["UPD7220"]~=null) then
+if VIDEOS["UPD7220"] then
files {
MAME_DIR .. "src/devices/video/upd7220.cpp",
MAME_DIR .. "src/devices/video/upd7220.h",
@@ -1455,7 +1649,7 @@ end
--@src/devices/video/upd7227.h,VIDEOS["UPD7227"] = true
--------------------------------------------------
-if (VIDEOS["UPD7227"]~=null) then
+if VIDEOS["UPD7227"] then
files {
MAME_DIR .. "src/devices/video/upd7227.cpp",
MAME_DIR .. "src/devices/video/upd7227.h",
@@ -1467,7 +1661,7 @@ end
--@src/devices/video/upd72120.h,VIDEOS["UPD72120"] = true
--------------------------------------------------
-if (VIDEOS["UPD72120"]~=null) then
+if VIDEOS["UPD72120"] then
files {
MAME_DIR .. "src/devices/video/upd72120.cpp",
MAME_DIR .. "src/devices/video/upd72120.h",
@@ -1479,7 +1673,7 @@ end
--@src/devices/video/v9938.h,VIDEOS["V9938"] = true
--------------------------------------------------
-if (VIDEOS["V9938"]~=null) then
+if VIDEOS["V9938"] then
files {
MAME_DIR .. "src/devices/video/v9938.cpp",
MAME_DIR .. "src/devices/video/v9938.h",
@@ -1488,22 +1682,10 @@ end
--------------------------------------------------
--
---@src/devices/video/zeus2.h,VIDEOS["ZEUS2"] = true
---------------------------------------------------
-
-if (VIDEOS["ZEUS2"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/zeus2.cpp",
- MAME_DIR .. "src/devices/video/zeus2.h",
- }
-end
-
---------------------------------------------------
---
--@src/devices/video/voodoo.h,VIDEOS["VOODOO"] = true
--------------------------------------------------
-if (VIDEOS["VOODOO"]~=null) then
+if VIDEOS["VOODOO"] then
files {
MAME_DIR .. "src/devices/video/voodoo.cpp",
MAME_DIR .. "src/devices/video/voodoo.h",
@@ -1522,7 +1704,7 @@ end
--@src/devices/video/voodoo_pci.h,VIDEOS["VOODOO_PCI"] = true
--------------------------------------------------
-if (VIDEOS["VOODOO_PCI"]~=null) then
+if VIDEOS["VOODOO_PCI"] then
files {
MAME_DIR .. "src/devices/video/voodoo_pci.cpp",
MAME_DIR .. "src/devices/video/voodoo_pci.h",
@@ -1534,7 +1716,7 @@ end
--@src/devices/video/crtc_ega.h,VIDEOS["CRTC_EGA"] = true
--------------------------------------------------
-if (VIDEOS["CRTC_EGA"]~=null) then
+if VIDEOS["CRTC_EGA"] then
files {
MAME_DIR .. "src/devices/video/crtc_ega.cpp",
MAME_DIR .. "src/devices/video/crtc_ega.h",
@@ -1543,134 +1725,10 @@ end
--------------------------------------------------
--
---@src/devices/video/jangou_blitter.h,VIDEOS["JANGOU_BLITTER"] = true
---------------------------------------------------
-
-if (VIDEOS["JANGOU_BLITTER"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/jangou_blitter.cpp",
- MAME_DIR .. "src/devices/video/jangou_blitter.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/gb_lcd.h,VIDEOS["GB_LCD"] = true
---------------------------------------------------
-
-if (VIDEOS["GB_LCD"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/gb_lcd.cpp",
- MAME_DIR .. "src/devices/video/gb_lcd.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/gba_lcd.h,VIDEOS["GBA_LCD"] = true
---------------------------------------------------
-
-if (VIDEOS["GBA_LCD"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/gba_lcd.cpp",
- MAME_DIR .. "src/devices/video/gba_lcd.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/ef9369.h,VIDEOS["EF9369"] = true
---------------------------------------------------
-
-if (VIDEOS["EF9369"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ef9369.cpp",
- MAME_DIR .. "src/devices/video/ef9369.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/ppu2c0x.h,VIDEOS["PPU2C0X"] = true
---------------------------------------------------
-
-if (VIDEOS["PPU2C0X"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ppu2c0x.cpp",
- MAME_DIR .. "src/devices/video/ppu2c0x.h",
- MAME_DIR .. "src/devices/video/ppu2c0x_vt.cpp",
- MAME_DIR .. "src/devices/video/ppu2c0x_vt.h",
- MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.cpp",
- MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.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/bt459.h,VIDEOS["BT459"] = true
---------------------------------------------------
-
-if (VIDEOS["BT459"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt459.cpp",
- MAME_DIR .. "src/devices/video/bt459.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/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/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
-
---------------------------------------------------
---
--@src/devices/video/imagetek_i4100.h,VIDEOS["I4100"] = true
--------------------------------------------------
-if (VIDEOS["I4100"]~=null) then
+if VIDEOS["I4100"] then
files {
MAME_DIR .. "src/devices/video/imagetek_i4100.cpp",
MAME_DIR .. "src/devices/video/imagetek_i4100.h",
@@ -1679,21 +1737,9 @@ 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
-
---------------------------------------------------
---
--@src/devices/video/topcat.h,VIDEOS["TOPCAT"] = true
--------------------------------------------------
-if (VIDEOS["TOPCAT"]~=null) then
+if VIDEOS["TOPCAT"] then
files {
MAME_DIR .. "src/devices/video/topcat.cpp",
MAME_DIR .. "src/devices/video/topcat.h",
@@ -1704,7 +1750,7 @@ end
--
--@src/devices/video/catseye.h,VIDEOS["CATSEYE"] = true
--------------------------------------------------
-if (VIDEOS["CATSEYE"]~=null) then
+if VIDEOS["CATSEYE"] then
files {
MAME_DIR .. "src/devices/video/catseye.cpp",
MAME_DIR .. "src/devices/video/catseye.h",
@@ -1716,7 +1762,7 @@ end
--
--@src/devices/video/nereid.h,VIDEOS["NEREID"] = true
--------------------------------------------------
-if (VIDEOS["NEREID"]~=null) then
+if VIDEOS["NEREID"] then
files {
MAME_DIR .. "src/devices/video/nereid.cpp",
MAME_DIR .. "src/devices/video/nereid.h",
@@ -1725,32 +1771,10 @@ end
--------------------------------------------------
--
---@src/devices/video/ps2gif.h,VIDEOS["PS2GIF"] = true
---------------------------------------------------
-if (VIDEOS["PS2GIF"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ps2gif.cpp",
- MAME_DIR .. "src/devices/video/ps2gif.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/ps2gs.h,VIDEOS["PS2GS"] = true
---------------------------------------------------
-if (VIDEOS["PS2GS"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ps2gs.cpp",
- MAME_DIR .. "src/devices/video/ps2gs.h",
- }
-end
-
---------------------------------------------------
---
--@src/devices/video/vrender0.h,VIDEOS["VRENDER0"] = true
--------------------------------------------------
-if (VIDEOS["VRENDER0"]~=null) then
+if VIDEOS["VRENDER0"] then
files {
MAME_DIR .. "src/devices/video/vrender0.cpp",
MAME_DIR .. "src/devices/video/vrender0.h",
@@ -1759,25 +1783,25 @@ end
--------------------------------------------------
--
---@src/devices/video/avgdvg.h,VIDEOS["AVGDVG"] = true
+--@src/devices/video/x1_001.h,VIDEOS["X1_001"] = true
--------------------------------------------------
-if (VIDEOS["AVGDVG"]~=null) then
+if VIDEOS["X1_001"] then
files {
- MAME_DIR .. "src/devices/video/avgdvg.cpp",
- MAME_DIR .. "src/devices/video/avgdvg.h",
+ MAME_DIR .. "src/devices/video/x1_001.cpp",
+ MAME_DIR .. "src/devices/video/x1_001.h",
}
end
--------------------------------------------------
--
---@src/devices/video/x1_001.h,VIDEOS["X1_001"] = true
+--@src/devices/video/zeus2.h,VIDEOS["ZEUS2"] = true
--------------------------------------------------
-if (VIDEOS["X1_001"]~=null) then
+if VIDEOS["ZEUS2"] then
files {
- MAME_DIR .. "src/devices/video/x1_001.cpp",
- MAME_DIR .. "src/devices/video/x1_001.h",
+ MAME_DIR .. "src/devices/video/zeus2.cpp",
+ MAME_DIR .. "src/devices/video/zeus2.h",
}
end
@@ -1786,7 +1810,7 @@ end
--@src/devices/video/zr36060.h,VIDEOS["ZR36060"] = true
--------------------------------------------------
-if (VIDEOS["ZR36060"]~=null) then
+if VIDEOS["ZR36060"] then
files {
MAME_DIR .. "src/devices/video/zr36060.cpp",
MAME_DIR .. "src/devices/video/zr36060.h",
@@ -1798,33 +1822,9 @@ end
--@src/devices/video/zr36110.h,VIDEOS["ZR36110"] = true
--------------------------------------------------
-if (VIDEOS["ZR36110"]~=null) then
+if VIDEOS["ZR36110"] then
files {
MAME_DIR .. "src/devices/video/zr36110.cpp",
MAME_DIR .. "src/devices/video/zr36110.h",
}
end
-
---------------------------------------------------
---
---@src/devices/video/bt450.h,VIDEOS["BT450"] = true
---------------------------------------------------
-
-if (VIDEOS["BT450"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt450.cpp",
- MAME_DIR .. "src/devices/video/bt450.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/st7626.h,VIDEOS["ST7626"] = true
---------------------------------------------------
-
-if (VIDEOS["ST7626"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/st7626.cpp",
- MAME_DIR .. "src/devices/video/st7626.h",
- }
-end