summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/machine.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/machine.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/machine.lua')
-rw-r--r--scripts/src/machine.lua941
1 files changed, 471 insertions, 470 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 4166fedc64f..7bb8fe73fa9 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -85,7 +85,7 @@ files {
--@src/devices/machine/acorn_bmu.h,MACHINES["ACORN_BMU"] = true
---------------------------------------------------
-if (MACHINES["ACORN_BMU"]~=null) then
+if MACHINES["ACORN_BMU"] then
files {
MAME_DIR .. "src/devices/machine/acorn_bmu.cpp",
MAME_DIR .. "src/devices/machine/acorn_bmu.h",
@@ -97,7 +97,7 @@ end
--@src/devices/machine/acorn_ioc.h,MACHINES["ACORN_IOC"] = true
--------------------------------------------------
-if (MACHINES["ACORN_IOC"]~=null) then
+if MACHINES["ACORN_IOC"] then
files {
MAME_DIR .. "src/devices/machine/acorn_ioc.cpp",
MAME_DIR .. "src/devices/machine/acorn_ioc.h",
@@ -106,46 +106,10 @@ end
---------------------------------------------------
--
---@src/devices/machine/elan_eu3a14_soc.h,MACHINES["ELAN_6502_SOC"] = true
---@src/devices/machine/elan_eu3a05_soc.h,MACHINES["ELAN_6502_SOC"] = true
---@src/devices/machine/elan_ep3a19a_soc.h,MACHINES["ELAN_6502_SOC"] = true
----------------------------------------------------
-
-if (MACHINES["ELAN_6502_SOC"]~=null) then
- files {
- MAME_DIR .. "src/devices/machine/elan_ep3a19asys.cpp",
- MAME_DIR .. "src/devices/machine/elan_ep3a19asys.h",
- MAME_DIR .. "src/devices/machine/elan_ep3a19a_soc.cpp",
- MAME_DIR .. "src/devices/machine/elan_ep3a19a_soc.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a05commonsys.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a05commonsys.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a05commonvid.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a05commonvid.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a05gpio.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a05gpio.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a05sys.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a05sys.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a05vid.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a05vid.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a05_a.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a05_a.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a05_soc.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a05_soc.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a14sys.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a14sys.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a14vid.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a14vid.h",
- MAME_DIR .. "src/devices/machine/elan_eu3a14_soc.cpp",
- MAME_DIR .. "src/devices/machine/elan_eu3a14_soc.h",
- }
-end
-
----------------------------------------------------
---
--@src/devices/machine/acorn_lc.h,MACHINES["ACORN_LC"] = true
---------------------------------------------------
-if (MACHINES["ACORN_LC"]~=null) then
+if MACHINES["ACORN_LC"] then
files {
MAME_DIR .. "src/devices/machine/acorn_lc.cpp",
MAME_DIR .. "src/devices/machine/acorn_lc.h",
@@ -157,7 +121,7 @@ end
--@src/devices/machine/acorn_memc.h,MACHINES["ACORN_MEMC"] = true
--------------------------------------------------
-if (MACHINES["ACORN_MEMC"]~=null) then
+if MACHINES["ACORN_MEMC"] then
files {
MAME_DIR .. "src/devices/machine/acorn_memc.cpp",
MAME_DIR .. "src/devices/machine/acorn_memc.h",
@@ -169,7 +133,7 @@ end
--@src/devices/machine/acorn_vidc.h,MACHINES["ACORN_VIDC"] = true
--------------------------------------------------
-if (MACHINES["ACORN_VIDC"]~=null) then
+if MACHINES["ACORN_VIDC"] then
files {
MAME_DIR .. "src/devices/machine/acorn_vidc.cpp",
MAME_DIR .. "src/devices/machine/acorn_vidc.h",
@@ -181,7 +145,7 @@ end
--@src/devices/machine/am2901b.h,MACHINES["AM2901B"] = true
---------------------------------------------------
-if (MACHINES["AM2901B"]~=null) then
+if MACHINES["AM2901B"] then
files {
MAME_DIR .. "src/devices/machine/am2901b.cpp",
MAME_DIR .. "src/devices/machine/am2901b.h",
@@ -193,7 +157,7 @@ end
--@src/devices/machine/arm_iomd.h,MACHINES["ARM_IOMD"] = true
--------------------------------------------------
-if (MACHINES["ARM_IOMD"]~=null) then
+if MACHINES["ARM_IOMD"] then
files {
MAME_DIR .. "src/devices/machine/arm_iomd.cpp",
MAME_DIR .. "src/devices/machine/arm_iomd.h",
@@ -205,7 +169,7 @@ end
--@src/devices/machine/autoconfig.h,MACHINES["AUTOCONFIG"] = true
---------------------------------------------------
-if (MACHINES["AUTOCONFIG"]~=null) then
+if MACHINES["AUTOCONFIG"] then
files {
MAME_DIR .. "src/devices/machine/autoconfig.cpp",
MAME_DIR .. "src/devices/machine/autoconfig.h",
@@ -218,7 +182,7 @@ end
--@src/devices/machine/cop452.h,MACHINES["COP452"] = true
---------------------------------------------------
-if (MACHINES["COP452"]~=null) then
+if MACHINES["COP452"] then
files {
MAME_DIR .. "src/devices/machine/cop452.cpp",
MAME_DIR .. "src/devices/machine/cop452.h",
@@ -231,7 +195,7 @@ end
--@src/devices/machine/cr511b.h,MACHINES["CR511B"] = true
---------------------------------------------------
-if (MACHINES["CR511B"]~=null) then
+if MACHINES["CR511B"] then
files {
MAME_DIR .. "src/devices/machine/cr511b.cpp",
MAME_DIR .. "src/devices/machine/cr511b.h",
@@ -244,7 +208,7 @@ end
--@src/devices/machine/dmac.h,MACHINES["DMAC"] = true
---------------------------------------------------
-if (MACHINES["DMAC"]~=null) then
+if MACHINES["DMAC"] then
files {
MAME_DIR .. "src/devices/machine/dmac.cpp",
MAME_DIR .. "src/devices/machine/dmac.h",
@@ -254,10 +218,47 @@ end
---------------------------------------------------
--
+--@src/devices/machine/elan_eu3a14_soc.h,MACHINES["ELAN_6502_SOC"] = true
+--@src/devices/machine/elan_eu3a05_soc.h,MACHINES["ELAN_6502_SOC"] = true
+--@src/devices/machine/elan_ep3a19a_soc.h,MACHINES["ELAN_6502_SOC"] = true
+---------------------------------------------------
+
+if MACHINES["ELAN_6502_SOC"] then
+ files {
+ MAME_DIR .. "src/devices/machine/elan_ep3a19asys.cpp",
+ MAME_DIR .. "src/devices/machine/elan_ep3a19asys.h",
+ MAME_DIR .. "src/devices/machine/elan_ep3a19a_soc.cpp",
+ MAME_DIR .. "src/devices/machine/elan_ep3a19a_soc.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05commonsys.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05commonsys.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05commonvid.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05commonvid.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05gpio.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05gpio.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05sys.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05sys.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05vid.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05vid.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05_a.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05_a.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05_soc.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a05_soc.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a14sys.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a14sys.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a14vid.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a14vid.h",
+ MAME_DIR .. "src/devices/machine/elan_eu3a14_soc.cpp",
+ MAME_DIR .. "src/devices/machine/elan_eu3a14_soc.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/machine/40105.h,MACHINES["CMOS40105"] = true
---------------------------------------------------
-if (MACHINES["CMOS40105"]~=null) then
+if MACHINES["CMOS40105"] then
files {
MAME_DIR .. "src/devices/machine/40105.cpp",
MAME_DIR .. "src/devices/machine/40105.h",
@@ -270,7 +271,7 @@ end
--@src/devices/machine/53c7xx.h,MACHINES["NCR53C7XX"] = true
---------------------------------------------------
-if (MACHINES["NCR53C7XX"]~=null) then
+if MACHINES["NCR53C7XX"] then
MACHINES["NSCSI"] = true
files {
MAME_DIR .. "src/devices/machine/53c7xx.cpp",
@@ -283,7 +284,7 @@ end
--@src/devices/machine/ncr5385.h,MACHINES["NCR5385"] = true
---------------------------------------------------
-if (MACHINES["NCR5385"]~=null) then
+if MACHINES["NCR5385"] then
MACHINES["NSCSI"] = true
files {
MAME_DIR .. "src/devices/machine/ncr5385.cpp",
@@ -296,7 +297,7 @@ end
--@src/devices/machine/53c810.h,MACHINES["LSI53C810"] = true
---------------------------------------------------
-if (MACHINES["LSI53C810"]~=null) then
+if MACHINES["LSI53C810"] then
MACHINES["SCSI"] = true
files {
MAME_DIR .. "src/devices/machine/53c810.cpp",
@@ -309,7 +310,7 @@ end
--@src/devices/machine/2812fifo.h,MACHINES["2812FIFO"] = true
---------------------------------------------------
-if (MACHINES["2812FIFO"]~=null) then
+if MACHINES["2812FIFO"] then
files {
MAME_DIR .. "src/devices/machine/2812fifo.cpp",
MAME_DIR .. "src/devices/machine/2812fifo.h",
@@ -321,7 +322,7 @@ end
--@src/devices/machine/6522via.h,MACHINES["6522VIA"] = true
---------------------------------------------------
-if (MACHINES["6522VIA"]~=null) then
+if MACHINES["6522VIA"] then
files {
MAME_DIR .. "src/devices/machine/6522via.cpp",
MAME_DIR .. "src/devices/machine/6522via.h",
@@ -333,7 +334,7 @@ end
--@src/devices/machine/6525tpi.h,MACHINES["TPI6525"] = true
---------------------------------------------------
-if (MACHINES["TPI6525"]~=null) then
+if MACHINES["TPI6525"] then
files {
MAME_DIR .. "src/devices/machine/6525tpi.cpp",
MAME_DIR .. "src/devices/machine/6525tpi.h",
@@ -345,7 +346,7 @@ end
--@src/devices/machine/6821pia.h,MACHINES["6821PIA"] = true
---------------------------------------------------
-if (MACHINES["6821PIA"]~=null) then
+if MACHINES["6821PIA"] then
files {
MAME_DIR .. "src/devices/machine/6821pia.cpp",
MAME_DIR .. "src/devices/machine/6821pia.h",
@@ -357,7 +358,7 @@ end
--@src/devices/machine/6840ptm.h,MACHINES["6840PTM"] = true
---------------------------------------------------
-if (MACHINES["6840PTM"]~=null) then
+if MACHINES["6840PTM"] then
files {
MAME_DIR .. "src/devices/machine/6840ptm.cpp",
MAME_DIR .. "src/devices/machine/6840ptm.h",
@@ -369,7 +370,7 @@ end
--@src/devices/machine/6850acia.h,MACHINES["ACIA6850"] = true
---------------------------------------------------
-if (MACHINES["ACIA6850"]~=null) then
+if MACHINES["ACIA6850"] then
files {
MAME_DIR .. "src/devices/machine/6850acia.cpp",
MAME_DIR .. "src/devices/machine/6850acia.h",
@@ -381,7 +382,7 @@ end
--@src/devices/machine/6883sam.h,MACHINES["6883SAM"] = true
---------------------------------------------------
-if (MACHINES["6883SAM"]~=null) then
+if MACHINES["6883SAM"] then
files {
MAME_DIR .. "src/devices/machine/6883sam.cpp",
MAME_DIR .. "src/devices/machine/6883sam.h",
@@ -393,7 +394,7 @@ end
--@src/devices/machine/68153bim.h,MACHINES["BIM68153"] = true
---------------------------------------------------
-if (MACHINES["BIM68153"]~=null) then
+if MACHINES["BIM68153"] then
files {
MAME_DIR .. "src/devices/machine/68153bim.cpp",
MAME_DIR .. "src/devices/machine/68153bim.h",
@@ -405,7 +406,7 @@ end
--@src/devices/machine/68230pit.h,MACHINES["PIT68230"] = true
---------------------------------------------------
-if (MACHINES["PIT68230"]~=null) then
+if MACHINES["PIT68230"] then
files {
MAME_DIR .. "src/devices/machine/68230pit.cpp",
MAME_DIR .. "src/devices/machine/68230pit.h",
@@ -417,7 +418,7 @@ end
--@src/devices/machine/68561mpcc.h,MACHINES["MPCC68561"] = true
---------------------------------------------------
-if (MACHINES["MPCC68561"]~=null) then
+if MACHINES["MPCC68561"] then
files {
MAME_DIR .. "src/devices/machine/68561mpcc.cpp",
MAME_DIR .. "src/devices/machine/68561mpcc.h",
@@ -429,7 +430,7 @@ end
--@src/devices/machine/mc68681.h,MACHINES["68681"] = true
---------------------------------------------------
-if (MACHINES["68681"]~=null) then
+if MACHINES["68681"] then
files {
MAME_DIR .. "src/devices/machine/mc68681.cpp",
MAME_DIR .. "src/devices/machine/mc68681.h",
@@ -441,7 +442,7 @@ end
--@src/devices/machine/7200fifo.h,MACHINES["7200FIFO"] = true
---------------------------------------------------
-if (MACHINES["7200FIFO"]~=null) then
+if MACHINES["7200FIFO"] then
files {
MAME_DIR .. "src/devices/machine/7200fifo.cpp",
MAME_DIR .. "src/devices/machine/7200fifo.h",
@@ -453,7 +454,7 @@ end
--@src/devices/machine/7404.h,MACHINES["TTL7404"] = true
---------------------------------------------------
-if (MACHINES["TTL7404"]~=null) then
+if MACHINES["TTL7404"] then
files {
MAME_DIR .. "src/devices/machine/7404.cpp",
MAME_DIR .. "src/devices/machine/7404.h",
@@ -465,7 +466,7 @@ end
--@src/devices/machine/74123.h,MACHINES["TTL74123"] = true
---------------------------------------------------
-if (MACHINES["TTL74123"]~=null) then
+if MACHINES["TTL74123"] then
files {
MAME_DIR .. "src/devices/machine/74123.cpp",
MAME_DIR .. "src/devices/machine/74123.h",
@@ -478,7 +479,7 @@ end
--@src/devices/machine/74145.h,MACHINES["TTL74145"] = true
---------------------------------------------------
-if (MACHINES["TTL74145"]~=null) then
+if MACHINES["TTL74145"] then
files {
MAME_DIR .. "src/devices/machine/74145.cpp",
MAME_DIR .. "src/devices/machine/74145.h",
@@ -490,7 +491,7 @@ end
--@src/devices/machine/74148.h,MACHINES["TTL74148"] = true
---------------------------------------------------
-if (MACHINES["TTL74148"]~=null) then
+if MACHINES["TTL74148"] then
files {
MAME_DIR .. "src/devices/machine/74148.cpp",
MAME_DIR .. "src/devices/machine/74148.h",
@@ -502,7 +503,7 @@ end
--@src/devices/machine/74153.h,MACHINES["TTL74153"] = true
---------------------------------------------------
-if (MACHINES["TTL74153"]~=null) then
+if MACHINES["TTL74153"] then
files {
MAME_DIR .. "src/devices/machine/74153.cpp",
MAME_DIR .. "src/devices/machine/74153.h",
@@ -514,7 +515,7 @@ end
--@src/devices/machine/74157.h,MACHINES["TTL74157"] = true
---------------------------------------------------
-if (MACHINES["TTL74157"]~=null) then
+if MACHINES["TTL74157"] then
files {
MAME_DIR .. "src/devices/machine/74157.cpp",
MAME_DIR .. "src/devices/machine/74157.h",
@@ -526,7 +527,7 @@ end
--@src/devices/machine/74161.h,MACHINES["TTL74161"] = true
---------------------------------------------------
-if (MACHINES["TTL74161"]~=null) then
+if MACHINES["TTL74161"] then
files {
MAME_DIR .. "src/devices/machine/74161.cpp",
MAME_DIR .. "src/devices/machine/74161.h",
@@ -538,7 +539,7 @@ end
--@src/devices/machine/74165.h,MACHINES["TTL74165"] = true
---------------------------------------------------
-if (MACHINES["TTL74165"]~=null) then
+if MACHINES["TTL74165"] then
files {
MAME_DIR .. "src/devices/machine/74165.cpp",
MAME_DIR .. "src/devices/machine/74165.h",
@@ -550,7 +551,7 @@ end
--@src/devices/machine/74166.h,MACHINES["TTL74166"] = true
---------------------------------------------------
-if (MACHINES["TTL74166"]~=null) then
+if MACHINES["TTL74166"] then
files {
MAME_DIR .. "src/devices/machine/74166.cpp",
MAME_DIR .. "src/devices/machine/74166.h",
@@ -562,7 +563,7 @@ end
--@src/devices/machine/74175.h,MACHINES["TTL74175"] = true
---------------------------------------------------
-if (MACHINES["TTL74175"]~=null) then
+if MACHINES["TTL74175"] then
files {
MAME_DIR .. "src/devices/machine/74175.cpp",
MAME_DIR .. "src/devices/machine/74175.h",
@@ -574,7 +575,7 @@ end
--@src/devices/machine/74181.h,MACHINES["TTL74181"] = true
---------------------------------------------------
-if (MACHINES["TTL74181"]~=null) then
+if MACHINES["TTL74181"] then
files {
MAME_DIR .. "src/devices/machine/74181.cpp",
MAME_DIR .. "src/devices/machine/74181.h",
@@ -586,7 +587,7 @@ end
--@src/devices/machine/74259.h,MACHINES["TTL74259"] = true
---------------------------------------------------
-if (MACHINES["TTL74259"]~=null) then
+if MACHINES["TTL74259"] then
files {
MAME_DIR .. "src/devices/machine/74259.cpp",
MAME_DIR .. "src/devices/machine/74259.h",
@@ -598,7 +599,7 @@ end
--@src/devices/machine/74381.h,MACHINES["TTL74381"] = true
---------------------------------------------------
-if (MACHINES["TTL74381"]~=null) then
+if MACHINES["TTL74381"] then
files {
MAME_DIR .. "src/devices/machine/74381.cpp",
MAME_DIR .. "src/devices/machine/74381.h",
@@ -610,7 +611,7 @@ end
--@src/devices/machine/74543.h,MACHINES["TTL74543"] = true
---------------------------------------------------
-if (MACHINES["TTL74543"]~=null) then
+if MACHINES["TTL74543"] then
files {
MAME_DIR .. "src/devices/machine/74543.cpp",
MAME_DIR .. "src/devices/machine/74543.h",
@@ -622,7 +623,7 @@ end
--@src/devices/machine/74610.h,MACHINES["TTL74610"] = true
---------------------------------------------------
-if (MACHINES["TTL74610"]~=null) then
+if MACHINES["TTL74610"] then
files {
MAME_DIR .. "src/devices/machine/74610.cpp",
MAME_DIR .. "src/devices/machine/74610.h",
@@ -634,7 +635,7 @@ end
--@src/devices/machine/7474.h,MACHINES["TTL7474"] = true
---------------------------------------------------
-if (MACHINES["TTL7474"]~=null) then
+if MACHINES["TTL7474"] then
files {
MAME_DIR .. "src/devices/machine/7474.cpp",
MAME_DIR .. "src/devices/machine/7474.h",
@@ -646,7 +647,7 @@ end
--@src/devices/machine/82s129.h,MACHINES["PROM82S129"] = true
---------------------------------------------------
-if (MACHINES["PROM82S129"]~=null) then
+if MACHINES["PROM82S129"] then
files {
MAME_DIR .. "src/devices/machine/82s129.cpp",
MAME_DIR .. "src/devices/machine/82s129.h",
@@ -658,7 +659,7 @@ end
--@src/devices/machine/8042kbdc.h,MACHINES["KBDC8042"] = true
---------------------------------------------------
-if (MACHINES["KBDC8042"]~=null) then
+if MACHINES["KBDC8042"] then
files {
MAME_DIR .. "src/devices/machine/8042kbdc.cpp",
MAME_DIR .. "src/devices/machine/8042kbdc.h",
@@ -670,7 +671,7 @@ end
--@src/devices/machine/82c100.h,MACHINES["82C100"] = true
---------------------------------------------------
-if (MACHINES["82C100"]~=null) then
+if MACHINES["82C100"] then
files {
MAME_DIR .. "src/devices/machine/82c100.cpp",
MAME_DIR .. "src/devices/machine/82c100.h",
@@ -682,7 +683,7 @@ end
--@src/devices/machine/82c606.h,MACHINES["82C606"] = true
---------------------------------------------------
-if (MACHINES["82C606"]~=null) then
+if MACHINES["82C606"] then
files {
MAME_DIR .. "src/devices/machine/82c606.cpp",
MAME_DIR .. "src/devices/machine/82c606.h",
@@ -694,7 +695,7 @@ end
--@src/devices/machine/adc0804.h,MACHINES["ADC0804"] = true
---------------------------------------------------
-if (MACHINES["ADC0804"]~=null) then
+if MACHINES["ADC0804"] then
files {
MAME_DIR .. "src/devices/machine/adc0804.cpp",
MAME_DIR .. "src/devices/machine/adc0804.h",
@@ -706,7 +707,7 @@ end
--@src/devices/machine/adc0808.h,MACHINES["ADC0808"] = true
---------------------------------------------------
-if (MACHINES["ADC0808"]~=null) then
+if MACHINES["ADC0808"] then
files {
MAME_DIR .. "src/devices/machine/adc0808.cpp",
MAME_DIR .. "src/devices/machine/adc0808.h",
@@ -718,7 +719,7 @@ end
--@src/devices/machine/adc083x.h,MACHINES["ADC083X"] = true
---------------------------------------------------
-if (MACHINES["ADC083X"]~=null) then
+if MACHINES["ADC083X"] then
files {
MAME_DIR .. "src/devices/machine/adc083x.cpp",
MAME_DIR .. "src/devices/machine/adc083x.h",
@@ -730,7 +731,7 @@ end
--@src/devices/machine/adc1038.h,MACHINES["ADC1038"] = true
---------------------------------------------------
-if (MACHINES["ADC1038"]~=null) then
+if MACHINES["ADC1038"] then
files {
MAME_DIR .. "src/devices/machine/adc1038.cpp",
MAME_DIR .. "src/devices/machine/adc1038.h",
@@ -742,7 +743,7 @@ end
--@src/devices/machine/adc1213x.h,MACHINES["ADC1213X"] = true
---------------------------------------------------
-if (MACHINES["ADC1213X"]~=null) then
+if MACHINES["ADC1213X"] then
files {
MAME_DIR .. "src/devices/machine/adc1213x.cpp",
MAME_DIR .. "src/devices/machine/adc1213x.h",
@@ -754,7 +755,7 @@ end
--@src/devices/machine/aicartc.h,MACHINES["AICARTC"] = true
---------------------------------------------------
-if (MACHINES["AICARTC"]~=null) then
+if MACHINES["AICARTC"] then
files {
MAME_DIR .. "src/devices/machine/aicartc.cpp",
MAME_DIR .. "src/devices/machine/aicartc.h",
@@ -766,7 +767,7 @@ end
--@src/devices/machine/am25s55x.h,MACHINES["AM25S55X"] = true
---------------------------------------------------
-if (MACHINES["AM25S55X"]~=null) then
+if MACHINES["AM25S55X"] then
files {
MAME_DIR .. "src/devices/machine/am25s55x.cpp",
MAME_DIR .. "src/devices/machine/am25s55x.h",
@@ -778,7 +779,7 @@ end
--@src/devices/machine/am2847.h,MACHINES["AM2847"] = true
---------------------------------------------------
-if (MACHINES["AM2847"]~=null) then
+if MACHINES["AM2847"] then
files {
MAME_DIR .. "src/devices/machine/am2847.cpp",
MAME_DIR .. "src/devices/machine/am2847.h",
@@ -790,7 +791,7 @@ end
--@src/devices/machine/am2910.h,MACHINES["AM2910"] = true
---------------------------------------------------
-if (MACHINES["AM2910"]~=null) then
+if MACHINES["AM2910"] then
files {
MAME_DIR .. "src/devices/machine/am2910.cpp",
MAME_DIR .. "src/devices/machine/am2910.h",
@@ -802,7 +803,7 @@ end
--@src/devices/machine/am79c30.h,MACHINES["AM79C30"] = true
---------------------------------------------------
-if (MACHINES["AM79C30"]~=null) then
+if MACHINES["AM79C30"] then
files {
MAME_DIR .. "src/devices/machine/am79c30.cpp",
MAME_DIR .. "src/devices/machine/am79c30.h",
@@ -814,7 +815,7 @@ end
--@src/devices/machine/am79c90.h,MACHINES["AM79C90"] = true
---------------------------------------------------
-if (MACHINES["AM79C90"]~=null) then
+if MACHINES["AM79C90"] then
files {
MAME_DIR .. "src/devices/machine/am79c90.cpp",
MAME_DIR .. "src/devices/machine/am79c90.h",
@@ -826,7 +827,7 @@ end
--@src/devices/machine/am9513.h,MACHINES["AM9513"] = true
---------------------------------------------------
-if (MACHINES["AM9513"]~=null) then
+if MACHINES["AM9513"] then
files {
MAME_DIR .. "src/devices/machine/am9513.cpp",
MAME_DIR .. "src/devices/machine/am9513.h",
@@ -838,7 +839,7 @@ end
--@src/devices/machine/am9517a.h,MACHINES["AM9517A"] = true
---------------------------------------------------
-if (MACHINES["AM9517A"]~=null) then
+if MACHINES["AM9517A"] then
files {
MAME_DIR .. "src/devices/machine/am9517a.cpp",
MAME_DIR .. "src/devices/machine/am9517a.h",
@@ -850,7 +851,7 @@ end
--@src/devices/machine/am9519.h,MACHINES["AM9519"] = true
---------------------------------------------------
-if (MACHINES["AM9519"]~=null) then
+if MACHINES["AM9519"] then
files {
MAME_DIR .. "src/devices/machine/am9519.cpp",
MAME_DIR .. "src/devices/machine/am9519.h",
@@ -862,7 +863,7 @@ end
--@src/devices/machine/applepic.h,MACHINES["APPLEPIC"] = true
---------------------------------------------------
-if (MACHINES["APPLEPIC"]~=null) then
+if MACHINES["APPLEPIC"] then
files {
MAME_DIR .. "src/devices/machine/applepic.cpp",
MAME_DIR .. "src/devices/machine/applepic.h",
@@ -874,7 +875,7 @@ end
--@src/devices/machine/at28c16.h,MACHINES["AT28C16"] = true
---------------------------------------------------
-if (MACHINES["AT28C16"]~=null) then
+if MACHINES["AT28C16"] then
files {
MAME_DIR .. "src/devices/machine/at28c16.cpp",
MAME_DIR .. "src/devices/machine/at28c16.h",
@@ -886,7 +887,7 @@ end
--@src/devices/machine/at28c64b.h,MACHINES["AT28C64B"] = true
---------------------------------------------------
-if (MACHINES["AT28C64B"]~=null) then
+if MACHINES["AT28C64B"] then
files {
MAME_DIR .. "src/devices/machine/at28c64b.cpp",
MAME_DIR .. "src/devices/machine/at28c64b.h",
@@ -898,7 +899,7 @@ end
--@src/devices/machine/at29x.h,MACHINES["AT29X"] = true
---------------------------------------------------
-if (MACHINES["AT29X"]~=null) then
+if MACHINES["AT29X"] then
files {
MAME_DIR .. "src/devices/machine/at29x.cpp",
MAME_DIR .. "src/devices/machine/at29x.h",
@@ -910,7 +911,7 @@ end
--@src/devices/machine/at45dbxx.h,MACHINES["AT45DBXX"] = true
---------------------------------------------------
-if (MACHINES["AT45DBXX"]~=null) then
+if MACHINES["AT45DBXX"] then
files {
MAME_DIR .. "src/devices/machine/at45dbxx.cpp",
MAME_DIR .. "src/devices/machine/at45dbxx.h",
@@ -922,7 +923,7 @@ end
--@src/devices/machine/atahle.h,MACHINES["ATAHLE"] = true
---------------------------------------------------
-if (MACHINES["ATAHLE"]~=null) then
+if MACHINES["ATAHLE"] then
files {
MAME_DIR .. "src/devices/machine/atahle.cpp",
MAME_DIR .. "src/devices/machine/atahle.h",
@@ -934,7 +935,7 @@ end
--@src/devices/machine/atastorage.h,MACHINES["ATASTORAGE"] = true
---------------------------------------------------
-if (MACHINES["ATASTORAGE"]~=null) then
+if MACHINES["ATASTORAGE"] then
files {
MAME_DIR .. "src/devices/machine/atastorage.cpp",
MAME_DIR .. "src/devices/machine/atastorage.h",
@@ -946,7 +947,7 @@ end
--@src/devices/machine/atmel_arm_aic.h,MACHINES["ARM_AIC"] = true
---------------------------------------------------
-if (MACHINES["ARM_AIC"]~=null) then
+if MACHINES["ARM_AIC"] then
files {
MAME_DIR .. "src/devices/machine/atmel_arm_aic.cpp",
MAME_DIR .. "src/devices/machine/atmel_arm_aic.h",
@@ -958,7 +959,7 @@ end
--@src/devices/machine/ay31015.h,MACHINES["AY31015"] = true
---------------------------------------------------
-if (MACHINES["AY31015"]~=null) then
+if MACHINES["AY31015"] then
files {
MAME_DIR .. "src/devices/machine/ay31015.cpp",
MAME_DIR .. "src/devices/machine/ay31015.h",
@@ -970,7 +971,7 @@ end
--@src/devices/machine/ay34592.h,MACHINES["AY34592"] = true
---------------------------------------------------
-if (MACHINES["AY34592"]~=null) then
+if MACHINES["AY34592"] then
files {
MAME_DIR .. "src/devices/machine/ay34592.cpp",
MAME_DIR .. "src/devices/machine/ay34592.h",
@@ -982,7 +983,7 @@ end
--@src/devices/machine/bankdev.h,MACHINES["BANKDEV"] = true
---------------------------------------------------
-if (MACHINES["BANKDEV"]~=null) then
+if MACHINES["BANKDEV"] then
files {
MAME_DIR .. "src/devices/machine/bankdev.cpp",
MAME_DIR .. "src/devices/machine/bankdev.h",
@@ -994,7 +995,7 @@ end
--@src/devices/machine/bq4847.h,MACHINES["BQ4847"] = true
---------------------------------------------------
-if (MACHINES["BQ4847"]~=null) then
+if MACHINES["BQ4847"] then
files {
MAME_DIR .. "src/devices/machine/bq4847.cpp",
MAME_DIR .. "src/devices/machine/bq4847.h",
@@ -1006,7 +1007,7 @@ end
--@src/devices/machine/bq48x2.h,MACHINES["BQ4852"] = true
---------------------------------------------------
-if (MACHINES["BQ4852"]~=null) then
+if MACHINES["BQ4852"] then
files {
MAME_DIR .. "src/devices/machine/bq48x2.cpp",
MAME_DIR .. "src/devices/machine/bq48x2.h",
@@ -1018,7 +1019,7 @@ end
--@src/devices/machine/busmouse.h,MACHINES["BUSMOUSE"] = true
---------------------------------------------------
-if (MACHINES["BUSMOUSE"]~=null) then
+if MACHINES["BUSMOUSE"] then
files {
MAME_DIR .. "src/devices/machine/busmouse.cpp",
MAME_DIR .. "src/devices/machine/busmouse.h",
@@ -1030,7 +1031,7 @@ end
--@src/devices/machine/cdp1852.h,MACHINES["CDP1852"] = true
---------------------------------------------------
-if (MACHINES["CDP1852"]~=null) then
+if MACHINES["CDP1852"] then
files {
MAME_DIR .. "src/devices/machine/cdp1852.cpp",
MAME_DIR .. "src/devices/machine/cdp1852.h",
@@ -1042,7 +1043,7 @@ end
--@src/devices/machine/cdp1871.h,MACHINES["CDP1871"] = true
---------------------------------------------------
-if (MACHINES["CDP1871"]~=null) then
+if MACHINES["CDP1871"] then
files {
MAME_DIR .. "src/devices/machine/cdp1871.cpp",
MAME_DIR .. "src/devices/machine/cdp1871.h",
@@ -1054,7 +1055,7 @@ end
--@src/devices/machine/cdp1879.h,MACHINES["CDP1879"] = true
---------------------------------------------------
-if (MACHINES["CDP1879"]~=null) then
+if MACHINES["CDP1879"] then
files {
MAME_DIR .. "src/devices/machine/cdp1879.cpp",
MAME_DIR .. "src/devices/machine/cdp1879.h",
@@ -1066,7 +1067,7 @@ end
--@src/devices/machine/ch376.h,MACHINES["CH376"] = true
---------------------------------------------------
-if (MACHINES["CH376"]~=null) then
+if MACHINES["CH376"] then
files {
MAME_DIR .. "src/devices/machine/ch376.cpp",
MAME_DIR .. "src/devices/machine/ch376.h",
@@ -1078,7 +1079,7 @@ end
--@src/devices/machine/chessmachine.h,MACHINES["CHESSMACHINE"] = true
---------------------------------------------------
-if (MACHINES["CHESSMACHINE"]~=null) then
+if MACHINES["CHESSMACHINE"] then
files {
MAME_DIR .. "src/devices/machine/chessmachine.cpp",
MAME_DIR .. "src/devices/machine/chessmachine.h",
@@ -1091,7 +1092,7 @@ end
--@src/devices/machine/com52c50.h,MACHINES["COM52C50"] = true
---------------------------------------------------
-if (MACHINES["COM52C50"]~=null) then
+if MACHINES["COM52C50"] then
files {
MAME_DIR .. "src/devices/machine/com52c50.cpp",
MAME_DIR .. "src/devices/machine/com52c50.h",
@@ -1103,7 +1104,7 @@ end
--@src/devices/machine/com8116.h,MACHINES["COM8116"] = true
---------------------------------------------------
-if (MACHINES["COM8116"]~=null) then
+if MACHINES["COM8116"] then
files {
MAME_DIR .. "src/devices/machine/com8116.cpp",
MAME_DIR .. "src/devices/machine/com8116.h",
@@ -1115,7 +1116,7 @@ end
--@src/devices/machine/cs4031.h,MACHINES["CS4031"] = true
---------------------------------------------------
-if (MACHINES["CS4031"]~=null) then
+if MACHINES["CS4031"] then
files {
MAME_DIR .. "src/devices/machine/cs4031.cpp",
MAME_DIR .. "src/devices/machine/cs4031.h",
@@ -1127,7 +1128,7 @@ end
--@src/devices/machine/cs8221.h,MACHINES["CS8221"] = true
---------------------------------------------------
-if (MACHINES["CS8221"]~=null) then
+if MACHINES["CS8221"] then
files {
MAME_DIR .. "src/devices/machine/cs8221.cpp",
MAME_DIR .. "src/devices/machine/cs8221.h",
@@ -1139,7 +1140,7 @@ end
--@src/devices/machine/cs8900a.h,MACHINES["CS8900A"] = true
---------------------------------------------------
-if (MACHINES["CS8900A"]~=null) then
+if MACHINES["CS8900A"] then
files {
MAME_DIR .. "src/devices/machine/cs8900a.cpp",
MAME_DIR .. "src/devices/machine/cs8900a.h",
@@ -1152,7 +1153,7 @@ end
--@src/devices/machine/cxd1095.h,MACHINES["CXD1095"] = true
---------------------------------------------------
-if (MACHINES["CXD1095"]~=null) then
+if MACHINES["CXD1095"] then
files {
MAME_DIR .. "src/devices/machine/cxd1095.cpp",
MAME_DIR .. "src/devices/machine/cxd1095.h",
@@ -1164,7 +1165,7 @@ end
--@src/devices/machine/dimm_spd.h,MACHINES["DIMM_SPD"] = true
---------------------------------------------------
-if (MACHINES["DIMM_SPD"]~=null) then
+if MACHINES["DIMM_SPD"] then
files {
MAME_DIR .. "src/devices/machine/dimm_spd.cpp",
MAME_DIR .. "src/devices/machine/dimm_spd.h",
@@ -1174,7 +1175,7 @@ end
--@src/devices/machine/dl11.h,MACHINES["DL11"] = true
---------------------------------------------------
-if (MACHINES["DL11"]~=null) then
+if MACHINES["DL11"] then
files {
MAME_DIR .. "src/devices/machine/dl11.cpp",
MAME_DIR .. "src/devices/machine/dl11.h",
@@ -1184,7 +1185,7 @@ end
--@src/devices/machine/ds1204.h,MACHINES["DS1204"] = true
---------------------------------------------------
-if (MACHINES["DS1204"]~=null) then
+if MACHINES["DS1204"] then
files {
MAME_DIR .. "src/devices/machine/ds1204.cpp",
MAME_DIR .. "src/devices/machine/ds1204.h",
@@ -1196,7 +1197,7 @@ end
--@src/devices/machine/ds1205.h,MACHINES["DS1205"] = true
---------------------------------------------------
-if (MACHINES["DS1205"]~=null) then
+if MACHINES["DS1205"] then
files {
MAME_DIR .. "src/devices/machine/ds1205.cpp",
MAME_DIR .. "src/devices/machine/ds1205.h",
@@ -1208,7 +1209,7 @@ end
--@src/devices/machine/ds1207.h,MACHINES["DS1207"] = true
---------------------------------------------------
-if (MACHINES["DS1207"]~=null) then
+if MACHINES["DS1207"] then
files {
MAME_DIR .. "src/devices/machine/ds1207.cpp",
MAME_DIR .. "src/devices/machine/ds1207.h",
@@ -1220,7 +1221,7 @@ end
--@src/devices/machine/ds1302.h,MACHINES["DS1302"] = true
---------------------------------------------------
-if (MACHINES["DS1302"]~=null) then
+if MACHINES["DS1302"] then
files {
MAME_DIR .. "src/devices/machine/ds1302.cpp",
MAME_DIR .. "src/devices/machine/ds1302.h",
@@ -1232,7 +1233,7 @@ end
--@src/devices/machine/ds1215.h,MACHINES["DS1215"] = true
---------------------------------------------------
-if (MACHINES["DS1215"]~=null) then
+if MACHINES["DS1215"] then
files {
MAME_DIR .. "src/devices/machine/ds1215.cpp",
MAME_DIR .. "src/devices/machine/ds1215.h",
@@ -1244,7 +1245,7 @@ end
--@src/devices/machine/ds1386.h,MACHINES["DS1386"] = true
---------------------------------------------------
-if (MACHINES["DS1386"]~=null) then
+if MACHINES["DS1386"] then
files {
MAME_DIR .. "src/devices/machine/ds1386.cpp",
MAME_DIR .. "src/devices/machine/ds1386.h",
@@ -1256,7 +1257,7 @@ end
--@src/devices/machine/ds17x85.h,MACHINES["DS17X85"] = true
---------------------------------------------------
-if (MACHINES["DS17X85"]~=null) then
+if MACHINES["DS17X85"] then
files {
MAME_DIR .. "src/devices/machine/ds17x85.cpp",
MAME_DIR .. "src/devices/machine/ds17x85.h",
@@ -1268,7 +1269,7 @@ end
--@src/devices/machine/ds1994.h,MACHINES["DS1994"] = true
---------------------------------------------------
-if (MACHINES["DS1994"]~=null) then
+if MACHINES["DS1994"] then
files {
MAME_DIR .. "src/devices/machine/ds1994.cpp",
MAME_DIR .. "src/devices/machine/ds1994.h",
@@ -1280,7 +1281,7 @@ end
--@src/devices/machine/ds2401.h,MACHINES["DS2401"] = true
---------------------------------------------------
-if (MACHINES["DS2401"]~=null) then
+if MACHINES["DS2401"] then
files {
MAME_DIR .. "src/devices/machine/ds2401.cpp",
MAME_DIR .. "src/devices/machine/ds2401.h",
@@ -1292,7 +1293,7 @@ end
--@src/devices/machine/ds2404.h,MACHINES["DS2404"] = true
---------------------------------------------------
-if (MACHINES["DS2404"]~=null) then
+if MACHINES["DS2404"] then
files {
MAME_DIR .. "src/devices/machine/ds2404.cpp",
MAME_DIR .. "src/devices/machine/ds2404.h",
@@ -1304,7 +1305,7 @@ end
--@src/devices/machine/ds2430a.h,MACHINES["DS2430A"] = true
---------------------------------------------------
-if (MACHINES["DS2430A"]~=null) then
+if MACHINES["DS2430A"] then
files {
MAME_DIR .. "src/devices/machine/ds2430a.cpp",
MAME_DIR .. "src/devices/machine/ds2430a.h",
@@ -1316,7 +1317,7 @@ end
--@src/devices/machine/ds6417.h,MACHINES["DS6417"] = true
---------------------------------------------------
-if (MACHINES["DS6417"]~=null) then
+if MACHINES["DS6417"] then
files {
MAME_DIR .. "src/devices/machine/ds6417.cpp",
MAME_DIR .. "src/devices/machine/ds6417.h",
@@ -1328,7 +1329,7 @@ end
--@src/devices/machine/ds75160a.h,MACHINES["DS75160A"] = true
---------------------------------------------------
-if (MACHINES["DS75160A"]~=null) then
+if MACHINES["DS75160A"] then
files {
MAME_DIR .. "src/devices/machine/ds75160a.cpp",
MAME_DIR .. "src/devices/machine/ds75160a.h",
@@ -1340,7 +1341,7 @@ end
--@src/devices/machine/ds75161a.h,MACHINES["DS75161A"] = true
---------------------------------------------------
-if (MACHINES["DS75161A"]~=null) then
+if MACHINES["DS75161A"] then
files {
MAME_DIR .. "src/devices/machine/ds75161a.cpp",
MAME_DIR .. "src/devices/machine/ds75161a.h",
@@ -1352,7 +1353,7 @@ end
--@src/devices/machine/e0516.h,MACHINES["E0516"] = true
---------------------------------------------------
-if (MACHINES["E0516"]~=null) then
+if MACHINES["E0516"] then
files {
MAME_DIR .. "src/devices/machine/e0516.cpp",
MAME_DIR .. "src/devices/machine/e0516.h",
@@ -1364,7 +1365,7 @@ end
--@src/devices/machine/e05a03.h,MACHINES["E05A03"] = true
---------------------------------------------------
-if (MACHINES["E05A03"]~=null) then
+if MACHINES["E05A03"] then
files {
MAME_DIR .. "src/devices/machine/e05a03.cpp",
MAME_DIR .. "src/devices/machine/e05a03.h",
@@ -1376,7 +1377,7 @@ end
--@src/devices/machine/e05a30.h,MACHINES["E05A30"] = true
---------------------------------------------------
-if (MACHINES["E05A30"]~=null) then
+if MACHINES["E05A30"] then
files {
MAME_DIR .. "src/devices/machine/e05a30.cpp",
MAME_DIR .. "src/devices/machine/e05a30.h",
@@ -1390,7 +1391,7 @@ end
--@src/devices/machine/eeprompar.h,MACHINES["EEPROMDEV"] = true
---------------------------------------------------
-if (MACHINES["EEPROMDEV"]~=null) then
+if MACHINES["EEPROMDEV"] then
files {
MAME_DIR .. "src/devices/machine/eeprom.cpp",
MAME_DIR .. "src/devices/machine/eeprom.h",
@@ -1406,7 +1407,7 @@ end
--@src/devices/machine/er1400.h,MACHINES["ER1400"] = true
---------------------------------------------------
-if (MACHINES["ER1400"]~=null) then
+if MACHINES["ER1400"] then
files {
MAME_DIR .. "src/devices/machine/er1400.cpp",
MAME_DIR .. "src/devices/machine/er1400.h",
@@ -1418,7 +1419,7 @@ end
--@src/devices/machine/er2055.h,MACHINES["ER2055"] = true
---------------------------------------------------
-if (MACHINES["ER2055"]~=null) then
+if MACHINES["ER2055"] then
files {
MAME_DIR .. "src/devices/machine/er2055.cpp",
MAME_DIR .. "src/devices/machine/er2055.h",
@@ -1430,7 +1431,7 @@ end
--@src/devices/machine/exorterm.h,MACHINES["EXORTERM"] = true
---------------------------------------------------
-if (MACHINES["EXORTERM"]~=null) then
+if MACHINES["EXORTERM"] then
files {
MAME_DIR .. "src/devices/machine/exorterm.cpp",
MAME_DIR .. "src/devices/machine/exorterm.h",
@@ -1450,7 +1451,7 @@ end
--@src/devices/machine/f3853.h,MACHINES["F3853"] = true
---------------------------------------------------
-if (MACHINES["F3853"]~=null) then
+if MACHINES["F3853"] then
files {
MAME_DIR .. "src/devices/machine/f3853.cpp",
MAME_DIR .. "src/devices/machine/f3853.h",
@@ -1462,7 +1463,7 @@ end
--@src/devices/machine/f4702.h,MACHINES["F4702"] = true
---------------------------------------------------
-if (MACHINES["F4702"]~=null) then
+if MACHINES["F4702"] then
files {
MAME_DIR .. "src/devices/machine/f4702.cpp",
MAME_DIR .. "src/devices/machine/f4702.h",
@@ -1474,7 +1475,7 @@ end
--@src/devices/machine/fga002.h,MACHINES["FGA002"] = true
---------------------------------------------------
-if (MACHINES["FGA002"]~=null) then
+if MACHINES["FGA002"] then
files {
MAME_DIR .. "src/devices/machine/fga002.cpp",
MAME_DIR .. "src/devices/machine/fga002.h",
@@ -1488,7 +1489,7 @@ end
--@src/devices/machine/gt913_snd.h,MACHINES["GT913"] = true
---------------------------------------------------
-if (MACHINES["GT913"]~=null) then
+if MACHINES["GT913"] then
files {
MAME_DIR .. "src/devices/machine/gt913_io.cpp",
MAME_DIR .. "src/devices/machine/gt913_io.h",
@@ -1504,7 +1505,7 @@ end
--@src/devices/machine/generic_spi_flash.h,MACHINES["GENERIC_SPI_FLASH"] = true
--------------------------------------------------
-if (MACHINES["GENERIC_SPI_FLASH"]~=null) then
+if MACHINES["GENERIC_SPI_FLASH"] then
files {
MAME_DIR .. "src/devices/machine/generic_spi_flash.cpp",
MAME_DIR .. "src/devices/machine/generic_spi_flash.h",
@@ -1516,7 +1517,7 @@ end
--@src/devices/machine/hd63450.h,MACHINES["HD63450"] = true
---------------------------------------------------
-if (MACHINES["HD63450"]~=null) then
+if MACHINES["HD63450"] then
files {
MAME_DIR .. "src/devices/machine/hd63450.cpp",
MAME_DIR .. "src/devices/machine/hd63450.h",
@@ -1528,7 +1529,7 @@ end
--@src/devices/machine/hd64610.h,MACHINES["HD64610"] = true
---------------------------------------------------
-if (MACHINES["HD64610"]~=null) then
+if MACHINES["HD64610"] then
files {
MAME_DIR .. "src/devices/machine/hd64610.cpp",
MAME_DIR .. "src/devices/machine/hd64610.h",
@@ -1540,7 +1541,7 @@ end
--@src/devices/machine/hp_dc100_tape.h,MACHINES["HP_DC100_TAPE"] = true
---------------------------------------------------
-if (MACHINES["HP_DC100_TAPE"]~=null) then
+if MACHINES["HP_DC100_TAPE"] then
files {
MAME_DIR .. "src/devices/machine/hp_dc100_tape.cpp",
MAME_DIR .. "src/devices/machine/hp_dc100_tape.h",
@@ -1552,7 +1553,7 @@ end
--@src/devices/machine/hp_taco.h,MACHINES["HP_TACO"] = true
---------------------------------------------------
-if (MACHINES["HP_TACO"]~=null) then
+if MACHINES["HP_TACO"] then
files {
MAME_DIR .. "src/devices/machine/hp_taco.cpp",
MAME_DIR .. "src/devices/machine/hp_taco.h",
@@ -1564,7 +1565,7 @@ end
--@src/devices/machine/1ma6.h,MACHINES["1MA6"] = true
---------------------------------------------------
-if (MACHINES["1MA6"]~=null) then
+if MACHINES["1MA6"] then
files {
MAME_DIR .. "src/devices/machine/1ma6.cpp",
MAME_DIR .. "src/devices/machine/1ma6.h",
@@ -1576,7 +1577,7 @@ end
--@src/devices/machine/1mb5.h,MACHINES["1MB5"] = true
---------------------------------------------------
-if (MACHINES["1MB5"]~=null) then
+if MACHINES["1MB5"] then
files {
MAME_DIR .. "src/devices/machine/1mb5.cpp",
MAME_DIR .. "src/devices/machine/1mb5.h",
@@ -1587,7 +1588,7 @@ end
--@src/devices/machine/ds1307.h,MACHINES["I2C_DS1307"] = true
---------------------------------------------------
-if (MACHINES["I2C_DS1307"]~=null) then
+if MACHINES["I2C_DS1307"] then
files {
MAME_DIR .. "src/devices/machine/ds1307.cpp",
MAME_DIR .. "src/devices/machine/ds1307.h",
@@ -1598,7 +1599,7 @@ end
--@src/devices/machine/i2chle.h,MACHINES["I2CHLE"] = true
---------------------------------------------------
-if (MACHINES["I2CHLE"]~=null) then
+if MACHINES["I2CHLE"] then
files {
MAME_DIR .. "src/devices/machine/i2chle.cpp",
MAME_DIR .. "src/devices/machine/i2chle.h",
@@ -1610,7 +1611,7 @@ end
--@src/devices/machine/i2cmem.h,MACHINES["I2CMEM"] = true
---------------------------------------------------
-if (MACHINES["I2CMEM"]~=null) then
+if MACHINES["I2CMEM"] then
files {
MAME_DIR .. "src/devices/machine/i2cmem.cpp",
MAME_DIR .. "src/devices/machine/i2cmem.h",
@@ -1622,7 +1623,7 @@ end
--@src/devices/machine/i7220.h,MACHINES["I7220"] = true
---------------------------------------------------
-if (MACHINES["I7220"]~=null) then
+if MACHINES["I7220"] then
files {
MAME_DIR .. "src/devices/machine/i7220.cpp",
MAME_DIR .. "src/devices/machine/i7220.h",
@@ -1634,7 +1635,7 @@ end
--@src/devices/machine/i8087.h,MACHINES["I8087"] = true
---------------------------------------------------
-if (MACHINES["I8087"]~=null) then
+if MACHINES["I8087"] then
files {
MAME_DIR .. "src/devices/machine/i8087.cpp",
MAME_DIR .. "src/devices/machine/i8087.h",
@@ -1646,7 +1647,7 @@ end
--@src/devices/machine/i8155.h,MACHINES["I8155"] = true
---------------------------------------------------
-if (MACHINES["I8155"]~=null) then
+if MACHINES["I8155"] then
files {
MAME_DIR .. "src/devices/machine/i8155.cpp",
MAME_DIR .. "src/devices/machine/i8155.h",
@@ -1658,7 +1659,7 @@ end
--@src/devices/machine/i8212.h,MACHINES["I8212"] = true
---------------------------------------------------
-if (MACHINES["I8212"]~=null) then
+if MACHINES["I8212"] then
files {
MAME_DIR .. "src/devices/machine/i8212.cpp",
MAME_DIR .. "src/devices/machine/i8212.h",
@@ -1670,7 +1671,7 @@ end
--@src/devices/machine/i8214.h,MACHINES["I8214"] = true
---------------------------------------------------
-if (MACHINES["I8214"]~=null) then
+if MACHINES["I8214"] then
files {
MAME_DIR .. "src/devices/machine/i8214.cpp",
MAME_DIR .. "src/devices/machine/i8214.h",
@@ -1682,7 +1683,7 @@ end
--@src/devices/machine/i82355.h,MACHINES["I82355"] = true
---------------------------------------------------
-if (MACHINES["I82355"]~=null) then
+if MACHINES["I82355"] then
files {
MAME_DIR .. "src/devices/machine/i82355.cpp",
MAME_DIR .. "src/devices/machine/i82355.h",
@@ -1694,7 +1695,7 @@ end
--@src/devices/machine/i8243.h,MACHINES["I8243"] = true
---------------------------------------------------
-if (MACHINES["I8243"]~=null) then
+if MACHINES["I8243"] then
files {
MAME_DIR .. "src/devices/machine/i8243.cpp",
MAME_DIR .. "src/devices/machine/i8243.h",
@@ -1706,7 +1707,7 @@ end
--@src/devices/machine/i8251.h,MACHINES["I8251"] = true
---------------------------------------------------
-if (MACHINES["I8251"]~=null) then
+if MACHINES["I8251"] then
files {
MAME_DIR .. "src/devices/machine/i8251.cpp",
MAME_DIR .. "src/devices/machine/i8251.h",
@@ -1718,7 +1719,7 @@ end
--@src/devices/machine/i8257.h,MACHINES["I8257"] = true
---------------------------------------------------
-if (MACHINES["I8257"]~=null) then
+if MACHINES["I8257"] then
files {
MAME_DIR .. "src/devices/machine/i8257.cpp",
MAME_DIR .. "src/devices/machine/i8257.h",
@@ -1731,7 +1732,7 @@ end
--@src/devices/machine/i8271.h,MACHINES["I8271"] = true
---------------------------------------------------
-if (MACHINES["I8271"]~=null) then
+if MACHINES["I8271"] then
files {
MAME_DIR .. "src/devices/machine/i8271.cpp",
MAME_DIR .. "src/devices/machine/i8271.h",
@@ -1743,7 +1744,7 @@ end
--@src/devices/machine/i8279.h,MACHINES["I8279"] = true
---------------------------------------------------
-if (MACHINES["I8279"]~=null) then
+if MACHINES["I8279"] then
files {
MAME_DIR .. "src/devices/machine/i8279.cpp",
MAME_DIR .. "src/devices/machine/i8279.h",
@@ -1755,7 +1756,7 @@ end
--@src/devices/machine/i8355.h,MACHINES["I8355"] = true
---------------------------------------------------
-if (MACHINES["I8355"]~=null) then
+if MACHINES["I8355"] then
files {
MAME_DIR .. "src/devices/machine/i8355.cpp",
MAME_DIR .. "src/devices/machine/i8355.h",
@@ -1767,7 +1768,7 @@ end
--@src/devices/machine/i80130.h,MACHINES["I80130"] = true
---------------------------------------------------
-if (MACHINES["I80130"]~=null) then
+if MACHINES["I80130"] then
files {
MAME_DIR .. "src/devices/machine/i80130.cpp",
MAME_DIR .. "src/devices/machine/i80130.h",
@@ -1779,7 +1780,7 @@ end
--@src/devices/machine/ibm21s850.h,MACHINES["IBM21S850"] = true
---------------------------------------------------
-if (MACHINES["IBM21S850"]~=null) then
+if MACHINES["IBM21S850"] then
files {
MAME_DIR .. "src/devices/machine/ibm21s850.cpp",
MAME_DIR .. "src/devices/machine/ibm21s850.h",
@@ -1791,7 +1792,7 @@ end
--@src/devices/machine/icd2053b.h,MACHINES["ICD2053B"] = true
---------------------------------------------------
-if (MACHINES["ICD2053B"]~=null) then
+if MACHINES["ICD2053B"] then
files {
MAME_DIR .. "src/devices/machine/icd2053b.cpp",
MAME_DIR .. "src/devices/machine/icd2053b.h",
@@ -1803,7 +1804,7 @@ end
--@src/devices/machine/icd2061a.h,MACHINES["ICD2061A"] = true
---------------------------------------------------
-if (MACHINES["ICD2061A"]~=null) then
+if MACHINES["ICD2061A"] then
files {
MAME_DIR .. "src/devices/machine/icd2061a.cpp",
MAME_DIR .. "src/devices/machine/icd2061a.h",
@@ -1815,7 +1816,7 @@ end
--@src/devices/machine/icm7170.h,MACHINES["ICM7170"] = true
---------------------------------------------------
-if (MACHINES["ICM7170"]~=null) then
+if MACHINES["ICM7170"] then
files {
MAME_DIR .. "src/devices/machine/icm7170.cpp",
MAME_DIR .. "src/devices/machine/icm7170.h",
@@ -1828,7 +1829,7 @@ end
--@src/devices/machine/vt83c461.h,MACHINES["IDECTRL"] = true
---------------------------------------------------
-if (MACHINES["IDECTRL"]~=null) then
+if MACHINES["IDECTRL"] then
files {
MAME_DIR .. "src/devices/machine/idectrl.cpp",
MAME_DIR .. "src/devices/machine/idectrl.h",
@@ -1842,7 +1843,7 @@ end
--@src/devices/machine/ie15.h,MACHINES["IE15"] = true
---------------------------------------------------
-if (MACHINES["IE15"]~=null) then
+if MACHINES["IE15"] then
files {
MAME_DIR .. "src/devices/machine/ie15.cpp",
MAME_DIR .. "src/devices/machine/ie15.h",
@@ -1864,7 +1865,7 @@ end
--@src/devices/machine/im6402.h,MACHINES["IM6402"] = true
---------------------------------------------------
-if (MACHINES["IM6402"]~=null) then
+if MACHINES["IM6402"] then
files {
MAME_DIR .. "src/devices/machine/im6402.cpp",
MAME_DIR .. "src/devices/machine/im6402.h",
@@ -1876,7 +1877,7 @@ end
--@src/devices/machine/ins8154.h,MACHINES["INS8154"] = true
---------------------------------------------------
-if (MACHINES["INS8154"]~=null) then
+if MACHINES["INS8154"] then
files {
MAME_DIR .. "src/devices/machine/ins8154.cpp",
MAME_DIR .. "src/devices/machine/ins8154.h",
@@ -1888,7 +1889,7 @@ end
--@src/devices/machine/ins8250.h,MACHINES["INS8250"] = true
---------------------------------------------------
-if (MACHINES["INS8250"]~=null) then
+if MACHINES["INS8250"] then
files {
MAME_DIR .. "src/devices/machine/ins8250.cpp",
MAME_DIR .. "src/devices/machine/ins8250.h",
@@ -1900,7 +1901,7 @@ end
--@src/devices/machine/intelfsh.h,MACHINES["INTELFLASH"] = true
---------------------------------------------------
-if (MACHINES["INTELFLASH"]~=null) then
+if MACHINES["INTELFLASH"] then
files {
MAME_DIR .. "src/devices/machine/intelfsh.cpp",
MAME_DIR .. "src/devices/machine/intelfsh.h",
@@ -1913,7 +1914,7 @@ end
--@src/devices/machine/jvshost.h,MACHINES["JVS"] = true
---------------------------------------------------
-if (MACHINES["JVS"]~=null) then
+if MACHINES["JVS"] then
files {
MAME_DIR .. "src/devices/machine/jvsdev.cpp",
MAME_DIR .. "src/devices/machine/jvsdev.h",
@@ -1927,7 +1928,7 @@ end
--@src/devices/machine/k033906.h,MACHINES["K033906"] = true
---------------------------------------------------
-if (MACHINES["K033906"]~=null) then
+if MACHINES["K033906"] then
files {
MAME_DIR .. "src/devices/machine/k033906.cpp",
MAME_DIR .. "src/devices/machine/k033906.h",
@@ -1939,7 +1940,7 @@ end
--@src/devices/machine/k053252.h,MACHINES["K053252"] = true
---------------------------------------------------
-if (MACHINES["K053252"]~=null) then
+if MACHINES["K053252"] then
files {
MAME_DIR .. "src/devices/machine/k053252.cpp",
MAME_DIR .. "src/devices/machine/k053252.h",
@@ -1951,7 +1952,7 @@ end
--@src/devices/machine/k056230.h,MACHINES["K056230"] = true
---------------------------------------------------
-if (MACHINES["K056230"]~=null) then
+if MACHINES["K056230"] then
files {
MAME_DIR .. "src/devices/machine/k056230.cpp",
MAME_DIR .. "src/devices/machine/k056230.h",
@@ -1963,7 +1964,7 @@ end
--@src/devices/machine/1801vp128.h,MACHINES["K1801VP128"] = true
---------------------------------------------------
-if (MACHINES["K1801VP128"]~=null) then
+if MACHINES["K1801VP128"] then
files {
MAME_DIR .. "src/devices/machine/1801vp128.cpp",
MAME_DIR .. "src/devices/machine/1801vp128.h",
@@ -1975,7 +1976,7 @@ end
--@src/devices/machine/kb3600.h,MACHINES["KB3600"] = true
---------------------------------------------------
-if (MACHINES["KB3600"]~=null) then
+if MACHINES["KB3600"] then
files {
MAME_DIR .. "src/devices/machine/kb3600.cpp",
MAME_DIR .. "src/devices/machine/kb3600.h",
@@ -1987,7 +1988,7 @@ end
--@src/devices/machine/kr1601rr1.h,MACHINES["KR1601RR1"] = true
---------------------------------------------------
-if (MACHINES["KR1601RR1"]~=null) then
+if MACHINES["KR1601RR1"] then
files {
MAME_DIR .. "src/devices/machine/kr1601rr1.cpp",
MAME_DIR .. "src/devices/machine/kr1601rr1.h",
@@ -1999,7 +2000,7 @@ end
--@src/devices/machine/kr2376.h,MACHINES["KR2376"] = true
---------------------------------------------------
-if (MACHINES["KR2376"]~=null) then
+if MACHINES["KR2376"] then
files {
MAME_DIR .. "src/devices/machine/kr2376.cpp",
MAME_DIR .. "src/devices/machine/kr2376.h",
@@ -2011,7 +2012,7 @@ end
--@src/devices/machine/latch8.h,MACHINES["LATCH8"] = true
---------------------------------------------------
-if (MACHINES["LATCH8"]~=null) then
+if MACHINES["LATCH8"] then
files {
MAME_DIR .. "src/devices/machine/latch8.cpp",
MAME_DIR .. "src/devices/machine/latch8.h",
@@ -2023,7 +2024,7 @@ end
--@src/devices/machine/ldpr8210.h,MACHINES["LDPR8210"] = true
---------------------------------------------------
-if (MACHINES["LDPR8210"]~=null) then
+if MACHINES["LDPR8210"] then
files {
MAME_DIR .. "src/devices/machine/ldpr8210.cpp",
MAME_DIR .. "src/devices/machine/ldpr8210.h",
@@ -2035,7 +2036,7 @@ end
--@src/devices/machine/ldstub.h,MACHINES["LDSTUB"] = true
---------------------------------------------------
-if (MACHINES["LDSTUB"]~=null) then
+if MACHINES["LDSTUB"] then
files {
MAME_DIR .. "src/devices/machine/ldstub.cpp",
MAME_DIR .. "src/devices/machine/ldstub.h",
@@ -2047,7 +2048,7 @@ end
--@src/devices/machine/ldv1000.h,MACHINES["LDV1000"] = true
---------------------------------------------------
-if (MACHINES["LDV1000"]~=null) then
+if MACHINES["LDV1000"] then
MACHINES["Z80CTC"] = true
MACHINES["I8255"] = true
files {
@@ -2061,7 +2062,7 @@ end
--@src/devices/machine/ldv1000hle.h,MACHINES["LDV1000HLE"] = true
---------------------------------------------------
-if (MACHINES["LDV1000HLE"]~=null) then
+if MACHINES["LDV1000HLE"] then
files {
MAME_DIR .. "src/devices/machine/ldv1000hle.cpp",
MAME_DIR .. "src/devices/machine/ldv1000hle.h",
@@ -2073,7 +2074,7 @@ end
--@src/devices/machine/ldv4200hle.h,MACHINES["LDV4200HLE"] = true
---------------------------------------------------
-if (MACHINES["LDV4200HLE"]~=null) then
+if MACHINES["LDV4200HLE"] then
files {
MAME_DIR .. "src/devices/machine/ldv4200hle.cpp",
MAME_DIR .. "src/devices/machine/ldv4200hle.h",
@@ -2085,7 +2086,7 @@ end
--@src/devices/machine/ldp1000.h,MACHINES["LDP1000"] = true
---------------------------------------------------
-if (MACHINES["LDP1000"]~=null) then
+if MACHINES["LDP1000"] then
files {
MAME_DIR .. "src/devices/machine/ldp1000.cpp",
MAME_DIR .. "src/devices/machine/ldp1000.h",
@@ -2097,7 +2098,7 @@ end
--@src/devices/machine/ldp1450.h,MACHINES["LDP1450"] = true
---------------------------------------------------
-if (MACHINES["LDP1450"]~=null) then
+if MACHINES["LDP1450"] then
files {
MAME_DIR .. "src/devices/machine/ldp1450.cpp",
MAME_DIR .. "src/devices/machine/ldp1450.h",
@@ -2109,7 +2110,7 @@ end
--@src/devices/machine/ldp1450hle.h,MACHINES["LDP1450HLE"] = true
---------------------------------------------------
-if (MACHINES["LDP1450HLE"]~=null) then
+if MACHINES["LDP1450HLE"] then
files {
MAME_DIR .. "src/devices/machine/ldp1450hle.cpp",
MAME_DIR .. "src/devices/machine/ldp1450hle.h",
@@ -2121,7 +2122,7 @@ end
--@src/devices/machine/ldvp931.h,MACHINES["LDVP931"] = true
---------------------------------------------------
-if (MACHINES["LDVP931"]~=null) then
+if MACHINES["LDVP931"] then
files {
MAME_DIR .. "src/devices/machine/ldvp931.cpp",
MAME_DIR .. "src/devices/machine/ldvp931.h",
@@ -2133,7 +2134,7 @@ end
--@src/devices/machine/lh5810.h,MACHINES["LH5810"] = true
---------------------------------------------------
-if (MACHINES["LH5810"]~=null) then
+if MACHINES["LH5810"] then
files {
MAME_DIR .. "src/devices/machine/lh5810.cpp",
MAME_DIR .. "src/devices/machine/lh5810.h",
@@ -2145,7 +2146,7 @@ end
--@src/devices/machine/locomo.h,MACHINES["LOCOMO"] = true
---------------------------------------------------
-if (MACHINES["LOCOMO"]~=null) then
+if MACHINES["LOCOMO"] then
files {
MAME_DIR .. "src/devices/machine/locomo.cpp",
MAME_DIR .. "src/devices/machine/locomo.h",
@@ -2157,7 +2158,7 @@ end
--@src/devices/machine/m3002.h,MACHINES["M3002"] = true
---------------------------------------------------
-if (MACHINES["M3002"]~=null) then
+if MACHINES["M3002"] then
files {
MAME_DIR .. "src/devices/machine/m3002.cpp",
MAME_DIR .. "src/devices/machine/m3002.h",
@@ -2169,7 +2170,7 @@ end
--@src/devices/machine/m68sfdc.h,MACHINES["M68SFDC"] = true
---------------------------------------------------
-if (MACHINES["M68SFDC"]~=null) then
+if MACHINES["M68SFDC"] then
files {
MAME_DIR .. "src/devices/machine/m68sfdc.cpp",
MAME_DIR .. "src/devices/machine/m68sfdc.h",
@@ -2181,7 +2182,7 @@ end
--@src/devices/machine/m6m80011ap.h,MACHINES["M6M80011AP"] = true
---------------------------------------------------
-if (MACHINES["M6M80011AP"]~=null) then
+if MACHINES["M6M80011AP"] then
files {
MAME_DIR .. "src/devices/machine/m6m80011ap.cpp",
MAME_DIR .. "src/devices/machine/m6m80011ap.h",
@@ -2193,7 +2194,7 @@ end
--@src/devices/machine/m950x0.h,MACHINES["M950X0"] = true
---------------------------------------------------
-if (MACHINES["M950X0"]~=null) then
+if MACHINES["M950X0"] then
files {
MAME_DIR .. "src/devices/machine/m950x0.cpp",
MAME_DIR .. "src/devices/machine/m950x0.h",
@@ -2205,7 +2206,7 @@ end
--@src/devices/machine/m95320.h,MACHINES["M95320"] = true
---------------------------------------------------
-if (MACHINES["M95320"]~=null) then
+if MACHINES["M95320"] then
files {
MAME_DIR .. "src/devices/machine/m95320.cpp",
MAME_DIR .. "src/devices/machine/m95320.h",
@@ -2217,7 +2218,7 @@ end
--@src/devices/machine/macseconds.h,MACHINES["MACSECONDS"] = true
---------------------------------------------------
-if (MACHINES["MACSECONDS"]~=null) then
+if MACHINES["MACSECONDS"] then
files {
MAME_DIR .. "src/devices/machine/macseconds.cpp",
MAME_DIR .. "src/devices/machine/macseconds.h",
@@ -2229,7 +2230,7 @@ end
--@src/devices/machine/mb14241.h,MACHINES["MB14241"] = true
---------------------------------------------------
-if (MACHINES["MB14241"]~=null) then
+if MACHINES["MB14241"] then
files {
MAME_DIR .. "src/devices/machine/mb14241.cpp",
MAME_DIR .. "src/devices/machine/mb14241.h",
@@ -2241,7 +2242,7 @@ end
--@src/devices/machine/mb3773.h,MACHINES["MB3773"] = true
---------------------------------------------------
-if (MACHINES["MB3773"]~=null) then
+if MACHINES["MB3773"] then
files {
MAME_DIR .. "src/devices/machine/mb3773.cpp",
MAME_DIR .. "src/devices/machine/mb3773.h",
@@ -2253,7 +2254,7 @@ end
--@src/devices/machine/mb8421.h,MACHINES["MB8421"] = true
---------------------------------------------------
-if (MACHINES["MB8421"]~=null) then
+if MACHINES["MB8421"] then
files {
MAME_DIR .. "src/devices/machine/mb8421.cpp",
MAME_DIR .. "src/devices/machine/mb8421.h",
@@ -2265,7 +2266,7 @@ end
--@src/devices/machine/mb87030.h,MACHINES["MB87030"] = true
---------------------------------------------------
-if (MACHINES["MB87030"]~=null) then
+if MACHINES["MB87030"] then
files {
MAME_DIR .. "src/devices/machine/mb87030.cpp",
MAME_DIR .. "src/devices/machine/mb87030.h",
@@ -2277,7 +2278,7 @@ end
--@src/devices/machine/mb87078.h,MACHINES["MB87078"] = true
---------------------------------------------------
-if (MACHINES["MB87078"]~=null) then
+if MACHINES["MB87078"] then
files {
MAME_DIR .. "src/devices/machine/mb87078.cpp",
MAME_DIR .. "src/devices/machine/mb87078.h",
@@ -2289,7 +2290,7 @@ end
--@src/devices/machine/mb8795.h,MACHINES["MB8795"] = true
---------------------------------------------------
-if (MACHINES["MB8795"]~=null) then
+if MACHINES["MB8795"] then
files {
MAME_DIR .. "src/devices/machine/mb8795.cpp",
MAME_DIR .. "src/devices/machine/mb8795.h",
@@ -2301,7 +2302,7 @@ end
--@src/devices/machine/mb89371.h,MACHINES["MB89371"] = true
---------------------------------------------------
-if (MACHINES["MB89371"]~=null) then
+if MACHINES["MB89371"] then
files {
MAME_DIR .. "src/devices/machine/mb89371.cpp",
MAME_DIR .. "src/devices/machine/mb89371.h",
@@ -2313,7 +2314,7 @@ end
--@src/devices/machine/mb89374.h,MACHINES["MB89374"] = true
---------------------------------------------------
-if (MACHINES["MB89374"]~=null) then
+if MACHINES["MB89374"] then
files {
MAME_DIR .. "src/devices/machine/mb89374.cpp",
MAME_DIR .. "src/devices/machine/mb89374.h",
@@ -2325,7 +2326,7 @@ end
--@src/devices/machine/mc146818.h,MACHINES["MC146818"] = true
---------------------------------------------------
-if (MACHINES["MC146818"]~=null) then
+if MACHINES["MC146818"] then
files {
MAME_DIR .. "src/devices/machine/mc146818.cpp",
MAME_DIR .. "src/devices/machine/mc146818.h",
@@ -2339,7 +2340,7 @@ end
--@src/devices/machine/mc14411.h,MACHINES["MC14411"] = true
---------------------------------------------------
-if (MACHINES["MC14411"]~=null) then
+if MACHINES["MC14411"] then
files {
MAME_DIR .. "src/devices/machine/mc14411.cpp",
MAME_DIR .. "src/devices/machine/mc14411.h",
@@ -2351,7 +2352,7 @@ end
--@src/devices/machine/mc6843.h,MACHINES["MC6843"] = true
---------------------------------------------------
-if (MACHINES["MC6843"]~=null) then
+if MACHINES["MC6843"] then
files {
MAME_DIR .. "src/devices/machine/mc6843.cpp",
MAME_DIR .. "src/devices/machine/mc6843.h",
@@ -2363,7 +2364,7 @@ end
--@src/devices/machine/mc6844.h,MACHINES["MC6844"] = true
---------------------------------------------------
-if (MACHINES["MC6844"]~=null) then
+if MACHINES["MC6844"] then
files {
MAME_DIR .. "src/devices/machine/mc6844.cpp",
MAME_DIR .. "src/devices/machine/mc6844.h",
@@ -2375,7 +2376,7 @@ end
--@src/devices/machine/mc6846.h,MACHINES["MC6846"] = true
---------------------------------------------------
-if (MACHINES["MC6846"]~=null) then
+if MACHINES["MC6846"] then
files {
MAME_DIR .. "src/devices/machine/mc6846.cpp",
MAME_DIR .. "src/devices/machine/mc6846.h",
@@ -2387,7 +2388,7 @@ end
--@src/devices/machine/mc6852.h,MACHINES["MC6852"] = true
---------------------------------------------------
-if (MACHINES["MC6852"]~=null) then
+if MACHINES["MC6852"] then
files {
MAME_DIR .. "src/devices/machine/mc6852.cpp",
MAME_DIR .. "src/devices/machine/mc6852.h",
@@ -2399,7 +2400,7 @@ end
--@src/devices/machine/mc6854.h,MACHINES["MC6854"] = true
---------------------------------------------------
-if (MACHINES["MC6854"]~=null) then
+if MACHINES["MC6854"] then
files {
MAME_DIR .. "src/devices/machine/mc6854.cpp",
MAME_DIR .. "src/devices/machine/mc6854.h",
@@ -2411,7 +2412,7 @@ end
--@src/devices/machine/mc68328.h,MACHINES["MC68328"] = true
---------------------------------------------------
-if (MACHINES["MC68328"]~=null) then
+if MACHINES["MC68328"] then
files {
MAME_DIR .. "src/devices/machine/mc68328.cpp",
MAME_DIR .. "src/devices/machine/mc68328.h",
@@ -2423,7 +2424,7 @@ end
--@src/devices/machine/mc68901.h,MACHINES["MC68901"] = true
---------------------------------------------------
-if (MACHINES["MC68901"]~=null) then
+if MACHINES["MC68901"] then
files {
MAME_DIR .. "src/devices/machine/mc68901.cpp",
MAME_DIR .. "src/devices/machine/mc68901.h",
@@ -2435,7 +2436,7 @@ end
--@src/devices/machine/mccs1850.h,MACHINES["MCCS1850"] = true
---------------------------------------------------
-if (MACHINES["MCCS1850"]~=null) then
+if MACHINES["MCCS1850"] then
files {
MAME_DIR .. "src/devices/machine/mccs1850.cpp",
MAME_DIR .. "src/devices/machine/mccs1850.h",
@@ -2447,7 +2448,7 @@ end
--@src/devices/machine/68307.h,MACHINES["M68307"] = true
---------------------------------------------------
-if (MACHINES["M68307"]~=null) then
+if MACHINES["M68307"] then
files {
MAME_DIR .. "src/devices/machine/68307.cpp",
MAME_DIR .. "src/devices/machine/68307.h",
@@ -2465,7 +2466,7 @@ end
--@src/devices/machine/68340.h,MACHINES["M68340"] = true
---------------------------------------------------
-if (MACHINES["M68340"]~=null) then
+if MACHINES["M68340"] then
files {
MAME_DIR .. "src/devices/machine/68340.cpp",
MAME_DIR .. "src/devices/machine/68340.h",
@@ -2486,7 +2487,7 @@ end
--@src/devices/machine/mdcr.h,MACHINES["MDCR"] = true
---------------------------------------------------
-if (MACHINES["MDCR"]~=null) then
+if MACHINES["MDCR"] then
files {
MAME_DIR .. "src/devices/machine/mdcr.cpp",
MAME_DIR .. "src/devices/machine/mdcr.h",
@@ -2498,7 +2499,7 @@ end
--@src/devices/machine/meters.h,MACHINES["METERS"] = true
---------------------------------------------------
-if (MACHINES["METERS"]~=null) then
+if MACHINES["METERS"] then
files {
MAME_DIR .. "src/devices/machine/meters.cpp",
MAME_DIR .. "src/devices/machine/meters.h",
@@ -2510,7 +2511,7 @@ end
--@src/devices/machine/microtch.h,MACHINES["MICROTOUCH"] = true
---------------------------------------------------
-if (MACHINES["MICROTOUCH"]~=null) then
+if MACHINES["MICROTOUCH"] then
files {
MAME_DIR .. "src/devices/machine/microtch.cpp",
MAME_DIR .. "src/devices/machine/microtch.h",
@@ -2522,7 +2523,7 @@ end
--@src/devices/machine/mm5307.h,MACHINES["MM5307"] = true
---------------------------------------------------
-if (MACHINES["MM5307"]~=null) then
+if MACHINES["MM5307"] then
files {
MAME_DIR .. "src/devices/machine/mm5307.cpp",
MAME_DIR .. "src/devices/machine/mm5307.h",
@@ -2534,7 +2535,7 @@ end
--@src/devices/machine/mm5740.h,MACHINES["MM5740"] = true
---------------------------------------------------
-if (MACHINES["MM5740"]~=null) then
+if MACHINES["MM5740"] then
files {
MAME_DIR .. "src/devices/machine/mm5740.cpp",
MAME_DIR .. "src/devices/machine/mm5740.h",
@@ -2546,7 +2547,7 @@ end
--@src/devices/machine/mm58274c.h,MACHINES["MM58274C"] = true
---------------------------------------------------
-if (MACHINES["MM58274C"]~=null) then
+if MACHINES["MM58274C"] then
files {
MAME_DIR .. "src/devices/machine/mm58274c.cpp",
MAME_DIR .. "src/devices/machine/mm58274c.h",
@@ -2558,7 +2559,7 @@ end
--@src/devices/machine/mm74c922.h,MACHINES["MM74C922"] = true
---------------------------------------------------
-if (MACHINES["MM74C922"]~=null) then
+if MACHINES["MM74C922"] then
files {
MAME_DIR .. "src/devices/machine/mm74c922.cpp",
MAME_DIR .. "src/devices/machine/mm74c922.h",
@@ -2570,7 +2571,7 @@ end
--@src/devices/machine/mos6526.h,MACHINES["MOS6526"] = true
---------------------------------------------------
-if (MACHINES["MOS6526"]~=null) then
+if MACHINES["MOS6526"] then
files {
MAME_DIR .. "src/devices/machine/mos6526.cpp",
MAME_DIR .. "src/devices/machine/mos6526.h",
@@ -2582,7 +2583,7 @@ end
--@src/devices/machine/mos6529.h,MACHINES["MOS6529"] = true
---------------------------------------------------
-if (MACHINES["MOS6529"]~=null) then
+if MACHINES["MOS6529"] then
files {
MAME_DIR .. "src/devices/machine/mos6529.cpp",
MAME_DIR .. "src/devices/machine/mos6529.h",
@@ -2594,7 +2595,7 @@ end
--@src/devices/machine/mos6530.h,MACHINES["MOS6530"] = true
---------------------------------------------------
-if (MACHINES["MOS6530"]~=null) then
+if MACHINES["MOS6530"] then
files {
MAME_DIR .. "src/devices/machine/mos6530.cpp",
MAME_DIR .. "src/devices/machine/mos6530.h",
@@ -2606,7 +2607,7 @@ end
--@src/devices/machine/mos6702.h,MACHINES["MOS6702"] = true
---------------------------------------------------
-if (MACHINES["MOS6702"]~=null) then
+if MACHINES["MOS6702"] then
files {
MAME_DIR .. "src/devices/machine/mos6702.cpp",
MAME_DIR .. "src/devices/machine/mos6702.h",
@@ -2618,7 +2619,7 @@ end
--@src/devices/machine/mos8706.h,MACHINES["MOS8706"] = true
---------------------------------------------------
-if (MACHINES["MOS8706"]~=null) then
+if MACHINES["MOS8706"] then
files {
MAME_DIR .. "src/devices/machine/mos8706.cpp",
MAME_DIR .. "src/devices/machine/mos8706.h",
@@ -2630,7 +2631,7 @@ end
--@src/devices/machine/mos8722.h,MACHINES["MOS8722"] = true
---------------------------------------------------
-if (MACHINES["MOS8722"]~=null) then
+if MACHINES["MOS8722"] then
files {
MAME_DIR .. "src/devices/machine/mos8722.cpp",
MAME_DIR .. "src/devices/machine/mos8722.h",
@@ -2642,7 +2643,7 @@ end
--@src/devices/machine/mos8726.h,MACHINES["MOS8726"] = true
---------------------------------------------------
-if (MACHINES["MOS8726"]~=null) then
+if MACHINES["MOS8726"] then
files {
MAME_DIR .. "src/devices/machine/mos8726.cpp",
MAME_DIR .. "src/devices/machine/mos8726.h",
@@ -2654,7 +2655,7 @@ end
--@src/devices/machine/mos6551.h,MACHINES["MOS6551"] = true
---------------------------------------------------
-if (MACHINES["MOS6551"]~=null) then
+if MACHINES["MOS6551"] then
files {
MAME_DIR .. "src/devices/machine/mos6551.cpp",
MAME_DIR .. "src/devices/machine/mos6551.h",
@@ -2666,7 +2667,7 @@ end
--@src/devices/machine/msm5001n.h,MACHINES["MSM5001N"] = true
---------------------------------------------------
-if (MACHINES["MSM5001N"]~=null) then
+if MACHINES["MSM5001N"] then
files {
MAME_DIR .. "src/devices/machine/msm5001n.cpp",
MAME_DIR .. "src/devices/machine/msm5001n.h",
@@ -2678,7 +2679,7 @@ end
--@src/devices/machine/msm5832.h,MACHINES["MSM5832"] = true
---------------------------------------------------
-if (MACHINES["MSM5832"]~=null) then
+if MACHINES["MSM5832"] then
files {
MAME_DIR .. "src/devices/machine/msm5832.cpp",
MAME_DIR .. "src/devices/machine/msm5832.h",
@@ -2690,7 +2691,7 @@ end
--@src/devices/machine/msm58321.h,MACHINES["MSM58321"] = true
---------------------------------------------------
-if (MACHINES["MSM58321"]~=null) then
+if MACHINES["MSM58321"] then
files {
MAME_DIR .. "src/devices/machine/msm58321.cpp",
MAME_DIR .. "src/devices/machine/msm58321.h",
@@ -2702,7 +2703,7 @@ end
--@src/devices/machine/msm6200.h,MACHINES["MSM6200"] = true
---------------------------------------------------
-if (MACHINES["MSM6200"]~=null) then
+if MACHINES["MSM6200"] then
files {
MAME_DIR .. "src/devices/machine/msm6200.cpp",
MAME_DIR .. "src/devices/machine/msm6200.h",
@@ -2714,7 +2715,7 @@ end
--@src/devices/machine/msm6242.h,MACHINES["MSM6242"] = true
---------------------------------------------------
-if (MACHINES["MSM6242"]~=null) then
+if MACHINES["MSM6242"] then
files {
MAME_DIR .. "src/devices/machine/msm6242.cpp",
MAME_DIR .. "src/devices/machine/msm6242.h",
@@ -2726,7 +2727,7 @@ end
--@src/devices/machine/msm6253.h,MACHINES["MSM6253"] = true
---------------------------------------------------
-if (MACHINES["MSM6253"]~=null) then
+if MACHINES["MSM6253"] then
files {
MAME_DIR .. "src/devices/machine/msm6253.cpp",
MAME_DIR .. "src/devices/machine/msm6253.h",
@@ -2738,7 +2739,7 @@ end
--@src/devices/machine/myb3k_kbd.h,MACHINES["MYB3K_KEYBOARD"] = true
---------------------------------------------------
-if (MACHINES["MYB3K_KEYBOARD"]~=null) then
+if MACHINES["MYB3K_KEYBOARD"] then
files {
MAME_DIR .. "src/devices/machine/myb3k_kbd.cpp",
MAME_DIR .. "src/devices/machine/myb3k_kbd.h",
@@ -2750,7 +2751,7 @@ end
--@src/devices/machine/nandflash.h,MACHINES["NANDFLASH"] = true
---------------------------------------------------
-if (MACHINES["NANDFLASH"]~=null) then
+if MACHINES["NANDFLASH"] then
files {
MAME_DIR .. "src/devices/machine/nandflash.cpp",
MAME_DIR .. "src/devices/machine/nandflash.h",
@@ -2762,7 +2763,7 @@ end
--@src/devices/machine/nmc9306.h,MACHINES["NMC9306"] = true
---------------------------------------------------
-if (MACHINES["NMC9306"]~=null) then
+if MACHINES["NMC9306"] then
files {
MAME_DIR .. "src/devices/machine/nmc9306.cpp",
MAME_DIR .. "src/devices/machine/nmc9306.h",
@@ -2775,7 +2776,7 @@ end
--@src/devices/machine/nscsi_cb.h,MACHINES["NSCSI"] = true
---------------------------------------------------
-if (MACHINES["NSCSI"]~=null) then
+if MACHINES["NSCSI"] then
files {
MAME_DIR .. "src/devices/machine/nscsi_bus.cpp",
MAME_DIR .. "src/devices/machine/nscsi_bus.h",
@@ -2789,7 +2790,7 @@ end
--@src/devices/machine/pcf8573.h,MACHINES["PCF8573"] = true
---------------------------------------------------
-if (MACHINES["PCF8573"]~=null) then
+if MACHINES["PCF8573"] then
files {
MAME_DIR .. "src/devices/machine/pcf8573.cpp",
MAME_DIR .. "src/devices/machine/pcf8573.h",
@@ -2801,7 +2802,7 @@ end
--@src/devices/machine/pcf8583.h,MACHINES["PCF8583"] = true
---------------------------------------------------
-if (MACHINES["PCF8583"]~=null) then
+if MACHINES["PCF8583"] then
files {
MAME_DIR .. "src/devices/machine/pcf8583.cpp",
MAME_DIR .. "src/devices/machine/pcf8583.h",
@@ -2813,7 +2814,7 @@ end
--@src/devices/machine/pcf8584.h,MACHINES["PCF8584"] = true
---------------------------------------------------
-if (MACHINES["PCF8584"]~=null) then
+if MACHINES["PCF8584"] then
files {
MAME_DIR .. "src/devices/machine/pcf8584.cpp",
MAME_DIR .. "src/devices/machine/pcf8584.h",
@@ -2825,7 +2826,7 @@ end
--@src/devices/machine/pcf8593.h,MACHINES["PCF8593"] = true
---------------------------------------------------
-if (MACHINES["PCF8593"]~=null) then
+if MACHINES["PCF8593"] then
files {
MAME_DIR .. "src/devices/machine/pcf8593.cpp",
MAME_DIR .. "src/devices/machine/pcf8593.h",
@@ -2837,7 +2838,7 @@ end
--@src/devices/machine/lpci.h,MACHINES["LPCI"] = true
---------------------------------------------------
-if (MACHINES["LPCI"]~=null) then
+if MACHINES["LPCI"] then
files {
MAME_DIR .. "src/devices/machine/lpci.cpp",
MAME_DIR .. "src/devices/machine/lpci.h",
@@ -2849,7 +2850,7 @@ end
--@src/devices/machine/pci.h,MACHINES["PCI"] = true
---------------------------------------------------
-if (MACHINES["PCI"]~=null) then
+if MACHINES["PCI"] then
files {
MAME_DIR .. "src/devices/machine/pci.cpp",
MAME_DIR .. "src/devices/machine/pci.h",
@@ -2940,7 +2941,7 @@ end
--@src/devices/machine/pcfx_intc.h,MACHINES["PCFX_INTC"] = true
---------------------------------------------------
-if (MACHINES["PCFX_INTC"]~=null) then
+if MACHINES["PCFX_INTC"] then
files {
MAME_DIR .. "src/devices/machine/pcfx_intc.cpp",
MAME_DIR .. "src/devices/machine/pcfx_intc.h",
@@ -2952,7 +2953,7 @@ end
--@src/devices/machine/pckeybrd.h,MACHINES["PCKEYBRD"] = true
---------------------------------------------------
-if (MACHINES["PCKEYBRD"]~=null) then
+if MACHINES["PCKEYBRD"] then
files {
MAME_DIR .. "src/devices/machine/pckeybrd.cpp",
MAME_DIR .. "src/devices/machine/pckeybrd.h",
@@ -2964,7 +2965,7 @@ end
--@src/devices/machine/phi.h,MACHINES["PHI"] = true
---------------------------------------------------
-if (MACHINES["PHI"]~=null) then
+if MACHINES["PHI"] then
files {
MAME_DIR .. "src/devices/machine/phi.cpp",
MAME_DIR .. "src/devices/machine/phi.h",
@@ -2976,7 +2977,7 @@ end
--@src/devices/machine/pic8259.h,MACHINES["PIC8259"] = true
---------------------------------------------------
-if (MACHINES["PIC8259"]~=null) then
+if MACHINES["PIC8259"] then
files {
MAME_DIR .. "src/devices/machine/pic8259.cpp",
MAME_DIR .. "src/devices/machine/pic8259.h",
@@ -2988,7 +2989,7 @@ end
--@src/devices/machine/pit8253.h,MACHINES["PIT8253"] = true
---------------------------------------------------
-if (MACHINES["PIT8253"]~=null) then
+if MACHINES["PIT8253"] then
files {
MAME_DIR .. "src/devices/machine/pit8253.cpp",
MAME_DIR .. "src/devices/machine/pit8253.h",
@@ -3000,7 +3001,7 @@ end
--@src/devices/machine/pla.h,MACHINES["PLA"] = true
---------------------------------------------------
-if (MACHINES["PLA"]~=null) then
+if MACHINES["PLA"] then
files {
MAME_DIR .. "src/devices/machine/pla.cpp",
MAME_DIR .. "src/devices/machine/pla.h",
@@ -3012,7 +3013,7 @@ end
--@src/devices/machine/pseudovia.h,MACHINES["PSEUDOVIA"] = true
---------------------------------------------------
-if (MACHINES["PSEUDOVIA"]~=null) then
+if MACHINES["PSEUDOVIA"] then
files {
MAME_DIR .. "src/devices/machine/pseudovia.cpp",
MAME_DIR .. "src/devices/machine/pseudovia.h",
@@ -3030,7 +3031,7 @@ end
--@src/devices/machine/psion_asic9.h,MACHINES["PSION_ASIC"] = true
---------------------------------------------------
-if (MACHINES["PSION_ASIC"]~=null) then
+if MACHINES["PSION_ASIC"] then
files {
MAME_DIR .. "src/devices/machine/psion_asic1.cpp",
MAME_DIR .. "src/devices/machine/psion_asic1.h",
@@ -3054,7 +3055,7 @@ end
--@src/devices/machine/psion_condor.h,MACHINES["PSION_CONDOR"] = true
---------------------------------------------------
-if (MACHINES["PSION_CONDOR"]~=null) then
+if MACHINES["PSION_CONDOR"] then
files {
MAME_DIR .. "src/devices/machine/psion_condor.cpp",
MAME_DIR .. "src/devices/machine/psion_condor.h",
@@ -3066,7 +3067,7 @@ end
--@src/devices/machine/psion_ssd.h,MACHINES["PSION_SSD"] = true
---------------------------------------------------
-if (MACHINES["PSION_SSD"]~=null) then
+if MACHINES["PSION_SSD"] then
files {
MAME_DIR .. "src/devices/machine/psion_ssd.cpp",
MAME_DIR .. "src/devices/machine/psion_ssd.h",
@@ -3078,7 +3079,7 @@ end
--@src/devices/machine/pxa255.h,MACHINES["PXA255"] = true
---------------------------------------------------
-if (MACHINES["PXA255"]~=null) then
+if MACHINES["PXA255"] then
files {
MAME_DIR .. "src/devices/machine/pxa255.cpp",
MAME_DIR .. "src/devices/machine/pxa255.h",
@@ -3090,7 +3091,7 @@ end
--@src/devices/machine/r10696.h,MACHINES["R10696"] = true
---------------------------------------------------
-if (MACHINES["R10696"]~=null) then
+if MACHINES["R10696"] then
files {
MAME_DIR .. "src/devices/machine/r10696.cpp",
MAME_DIR .. "src/devices/machine/r10696.h",
@@ -3102,7 +3103,7 @@ end
--@src/devices/machine/r10788.h,MACHINES["R10788"] = true
---------------------------------------------------
-if (MACHINES["R10788"]~=null) then
+if MACHINES["R10788"] then
files {
MAME_DIR .. "src/devices/machine/r10788.cpp",
MAME_DIR .. "src/devices/machine/r10788.h",
@@ -3114,7 +3115,7 @@ end
--@src/devices/machine/r65c52.h,MACHINES["R65C52"] = true
---------------------------------------------------
-if (MACHINES["R65C52"]~=null) then
+if MACHINES["R65C52"] then
files {
MAME_DIR .. "src/devices/machine/r65c52.cpp",
MAME_DIR .. "src/devices/machine/r65c52.h",
@@ -3126,7 +3127,7 @@ end
--@src/devices/machine/ra17xx.h,MACHINES["RA17XX"] = true
---------------------------------------------------
-if (MACHINES["RA17XX"]~=null) then
+if MACHINES["RA17XX"] then
files {
MAME_DIR .. "src/devices/machine/ra17xx.cpp",
MAME_DIR .. "src/devices/machine/ra17xx.h",
@@ -3138,7 +3139,7 @@ end
--@src/devices/machine/rf5c296.h,MACHINES["RF5C296"] = true
---------------------------------------------------
-if (MACHINES["RF5C296"]~=null) then
+if MACHINES["RF5C296"] then
files {
MAME_DIR .. "src/devices/machine/rf5c296.cpp",
MAME_DIR .. "src/devices/machine/rf5c296.h",
@@ -3150,7 +3151,7 @@ end
--@src/devices/machine/ripple_counter.h,MACHINES["RIPPLE_COUNTER"] = true
---------------------------------------------------
-if (MACHINES["RIPPLE_COUNTER"]~=null) then
+if MACHINES["RIPPLE_COUNTER"] then
files {
MAME_DIR .. "src/devices/machine/ripple_counter.cpp",
MAME_DIR .. "src/devices/machine/ripple_counter.h",
@@ -3162,7 +3163,7 @@ end
--@src/devices/machine/rp5c01.h,MACHINES["RP5C01"] = true
---------------------------------------------------
-if (MACHINES["RP5C01"]~=null) then
+if MACHINES["RP5C01"] then
files {
MAME_DIR .. "src/devices/machine/rp5c01.cpp",
MAME_DIR .. "src/devices/machine/rp5c01.h",
@@ -3174,7 +3175,7 @@ end
--@src/devices/machine/rp5c15.h,MACHINES["RP5C15"] = true
---------------------------------------------------
-if (MACHINES["RP5C15"]~=null) then
+if MACHINES["RP5C15"] then
files {
MAME_DIR .. "src/devices/machine/rp5c15.cpp",
MAME_DIR .. "src/devices/machine/rp5c15.h",
@@ -3186,7 +3187,7 @@ end
--@src/devices/machine/rp5h01.h,MACHINES["RP5H01"] = true
---------------------------------------------------
-if (MACHINES["RP5H01"]~=null) then
+if MACHINES["RP5H01"] then
files {
MAME_DIR .. "src/devices/machine/rp5h01.cpp",
MAME_DIR .. "src/devices/machine/rp5h01.h",
@@ -3198,7 +3199,7 @@ end
--@src/devices/machine/64h156.h,MACHINES["R64H156"] = true
---------------------------------------------------
-if (MACHINES["R64H156"]~=null) then
+if MACHINES["R64H156"] then
files {
MAME_DIR .. "src/devices/machine/64h156.cpp",
MAME_DIR .. "src/devices/machine/64h156.h",
@@ -3210,7 +3211,7 @@ end
--@src/devices/machine/rstbuf.h,MACHINES["RSTBUF"] = true
---------------------------------------------------
-if (MACHINES["RSTBUF"]~=null) then
+if MACHINES["RSTBUF"] then
files {
MAME_DIR .. "src/devices/machine/rstbuf.cpp",
MAME_DIR .. "src/devices/machine/rstbuf.h",
@@ -3222,7 +3223,7 @@ end
--@src/devices/machine/rtc4543.h,MACHINES["RTC4543"] = true
---------------------------------------------------
-if (MACHINES["RTC4543"]~=null) then
+if MACHINES["RTC4543"] then
files {
MAME_DIR .. "src/devices/machine/rtc4543.cpp",
MAME_DIR .. "src/devices/machine/rtc4543.h",
@@ -3234,7 +3235,7 @@ end
--@src/devices/machine/rtc65271.h,MACHINES["RTC65271"] = true
---------------------------------------------------
-if (MACHINES["RTC65271"]~=null) then
+if MACHINES["RTC65271"] then
files {
MAME_DIR .. "src/devices/machine/rtc65271.cpp",
MAME_DIR .. "src/devices/machine/rtc65271.h",
@@ -3246,7 +3247,7 @@ end
--@src/devices/machine/rtc9701.h,MACHINES["RTC9701"] = true
---------------------------------------------------
-if (MACHINES["RTC9701"]~=null) then
+if MACHINES["RTC9701"] then
files {
MAME_DIR .. "src/devices/machine/rtc9701.cpp",
MAME_DIR .. "src/devices/machine/rtc9701.h",
@@ -3258,7 +3259,7 @@ end
--@src/devices/machine/s2350.h,MACHINES["S2350"] = true
---------------------------------------------------
-if (MACHINES["S2350"]~=null) then
+if MACHINES["S2350"] then
files {
MAME_DIR .. "src/devices/machine/s2350.cpp",
MAME_DIR .. "src/devices/machine/s2350.h",
@@ -3270,7 +3271,7 @@ end
--@src/devices/machine/s2636.h,MACHINES["S2636"] = true
---------------------------------------------------
-if (MACHINES["S2636"]~=null) then
+if MACHINES["S2636"] then
files {
MAME_DIR .. "src/devices/machine/s2636.cpp",
MAME_DIR .. "src/devices/machine/s2636.h",
@@ -3282,7 +3283,7 @@ end
--@src/devices/machine/s3520cf.h,MACHINES["S3520CF"] = true
---------------------------------------------------
-if (MACHINES["S3520CF"]~=null) then
+if MACHINES["S3520CF"] then
files {
MAME_DIR .. "src/devices/machine/s3520cf.cpp",
MAME_DIR .. "src/devices/machine/s3520cf.h",
@@ -3296,7 +3297,7 @@ end
--@src/devices/machine/s3c2440.h,MACHINES["S3C24XX"] = true
---------------------------------------------------
-if (MACHINES["S3C24XX"]~=null) then
+if MACHINES["S3C24XX"] then
files {
MAME_DIR .. "src/devices/machine/s3c2400.cpp",
MAME_DIR .. "src/devices/machine/s3c2400.h",
@@ -3315,7 +3316,7 @@ end
--@src/devices/machine/s3c44b0.h,MACHINES["S3C44B0"] = true
---------------------------------------------------
-if (MACHINES["S3C44B0"]~=null) then
+if MACHINES["S3C44B0"] then
files {
MAME_DIR .. "src/devices/machine/s3c44b0.cpp",
MAME_DIR .. "src/devices/machine/s3c44b0.h",
@@ -3327,7 +3328,7 @@ end
--@src/devices/machine/sa1110.h,MACHINES["SA1110"] = true
---------------------------------------------------
-if (MACHINES["SA1110"]~=null) then
+if MACHINES["SA1110"] then
files {
MAME_DIR .. "src/devices/machine/sa1110.cpp",
MAME_DIR .. "src/devices/machine/sa1110.h",
@@ -3339,7 +3340,7 @@ end
--@src/devices/machine/sa1111.h,MACHINES["SA1111"] = true
---------------------------------------------------
-if (MACHINES["SA1111"]~=null) then
+if MACHINES["SA1111"] then
files {
MAME_DIR .. "src/devices/machine/sa1111.cpp",
MAME_DIR .. "src/devices/machine/sa1111.h",
@@ -3351,7 +3352,7 @@ end
--@src/devices/machine/saa1043.h,MACHINES["SAA1043"] = true
---------------------------------------------------
-if (MACHINES["SAA1043"]~=null) then
+if MACHINES["SAA1043"] then
files {
MAME_DIR .. "src/devices/machine/saa1043.cpp",
MAME_DIR .. "src/devices/machine/saa1043.h",
@@ -3363,7 +3364,7 @@ end
--@src/devices/machine/saa5070.h,MACHINES["SAA5070"] = true
---------------------------------------------------
-if (MACHINES["SAA5070"]~=null) then
+if MACHINES["SAA5070"] then
files {
MAME_DIR .. "src/devices/machine/saa5070.cpp",
MAME_DIR .. "src/devices/machine/saa5070.h",
@@ -3374,7 +3375,7 @@ end
--
--@src/devices/machine/sc16is741.h,MACHINES["SC16IS741"] = true
---------------------------------------------------
-if (MACHINES["SC16IS741"]~=null) then
+if MACHINES["SC16IS741"] then
files {
MAME_DIR .. "src/devices/machine/sc16is741.cpp",
MAME_DIR .. "src/devices/machine/sc16is741.h",
@@ -3385,7 +3386,7 @@ end
--
--@src/devices/machine/scc66470.h,MACHINES["SCC66470"] = true
---------------------------------------------------
-if (MACHINES["SCC66470"]~=null) then
+if MACHINES["SCC66470"] then
files {
MAME_DIR .. "src/devices/machine/scc66470.cpp",
MAME_DIR .. "src/devices/machine/scc66470.h",
@@ -3396,7 +3397,7 @@ end
--
--@src/devices/machine/scc68070.h,MACHINES["SCC68070"] = true
---------------------------------------------------
-if (MACHINES["SCC68070"]~=null) then
+if MACHINES["SCC68070"] then
files {
MAME_DIR .. "src/devices/machine/scc68070.cpp",
MAME_DIR .. "src/devices/machine/scc68070.h",
@@ -3408,7 +3409,7 @@ end
--@src/devices/machine/scn_pci.h,MACHINES["SCN_PCI"] = true
---------------------------------------------------
-if (MACHINES["SCN_PCI"]~=null) then
+if MACHINES["SCN_PCI"] then
files {
MAME_DIR .. "src/devices/machine/scn_pci.cpp",
MAME_DIR .. "src/devices/machine/scn_pci.h",
@@ -3419,7 +3420,7 @@ end
--
--@src/devices/machine/scoop.h,MACHINES["SCOOP"] = true
---------------------------------------------------
-if (MACHINES["SCOOP"]~=null) then
+if MACHINES["SCOOP"] then
files {
MAME_DIR .. "src/devices/machine/scoop.cpp",
MAME_DIR .. "src/devices/machine/scoop.h",
@@ -3431,7 +3432,7 @@ end
--@src/devices/machine/scnxx562.h,MACHINES["DUSCC"] = true
---------------------------------------------------
-if (MACHINES["DUSCC"]~=null) then
+if MACHINES["DUSCC"] then
files {
MAME_DIR .. "src/devices/machine/scnxx562.cpp",
MAME_DIR .. "src/devices/machine/scnxx562.h",
@@ -3443,7 +3444,7 @@ end
--@src/devices/machine/sda2006.h,MACHINES["SDA2006"] = true
---------------------------------------------------
-if (MACHINES["SDA2006"]~=null) then
+if MACHINES["SDA2006"] then
files {
MAME_DIR .. "src/devices/machine/sda2006.cpp",
MAME_DIR .. "src/devices/machine/sda2006.h",
@@ -3455,7 +3456,7 @@ end
--@src/devices/machine/sega_md_ioport.h,MACHINES["SEGA_MD_IOPORT"] = true
---------------------------------------------------
-if (MACHINES["SEGA_MD_IOPORT"]~=null) then
+if MACHINES["SEGA_MD_IOPORT"] then
files {
MAME_DIR .. "src/devices/machine/sega_md_ioport.cpp",
MAME_DIR .. "src/devices/machine/sega_md_ioport.h",
@@ -3468,7 +3469,7 @@ end
--@src/devices/machine/sensorboard.h,MACHINES["SENSORBOARD"] = true
---------------------------------------------------
-if (MACHINES["SENSORBOARD"]~=null) then
+if MACHINES["SENSORBOARD"] then
files {
MAME_DIR .. "src/devices/machine/sensorboard.cpp",
MAME_DIR .. "src/devices/machine/sensorboard.h",
@@ -3480,7 +3481,7 @@ end
--@src/devices/machine/smc91c9x.h,MACHINES["SMC91C9X"] = true
---------------------------------------------------
-if (MACHINES["SMC91C9X"]~=null) then
+if MACHINES["SMC91C9X"] then
files {
MAME_DIR .. "src/devices/machine/smc91c9x.cpp",
MAME_DIR .. "src/devices/machine/smc91c9x.h",
@@ -3497,7 +3498,7 @@ end
--@src/devices/machine/generalplus_gpl951xx_soc.h,MACHINES["SPG2XX"] = true
---------------------------------------------------
-if (MACHINES["SPG2XX"]~=null) then
+if MACHINES["SPG2XX"] then
files {
MAME_DIR .. "src/devices/machine/spg2xx.cpp",
MAME_DIR .. "src/devices/machine/spg2xx.h",
@@ -3536,7 +3537,7 @@ end
--@src/devices/machine/spg290_ppu.h,MACHINES["SPG290"] = true
---------------------------------------------------
-if (MACHINES["SPG290"]~=null) then
+if MACHINES["SPG290"] then
files {
MAME_DIR .. "src/devices/machine/spg290_cdservo.cpp",
MAME_DIR .. "src/devices/machine/spg290_cdservo.h",
@@ -3554,7 +3555,7 @@ end
--@src/devices/machine/swtpc8212.h,MACHINES["SWTPC8212"] = true
---------------------------------------------------
-if (MACHINES["SWTPC8212"]~=null) then
+if MACHINES["SWTPC8212"] then
files {
MAME_DIR .. "src/devices/machine/swtpc8212.cpp",
MAME_DIR .. "src/devices/machine/swtpc8212.h",
@@ -3566,11 +3567,11 @@ end
--
---------------------------------------------------
-if (BUSES["ATA"]~=null) or (BUSES["SCSI"]~=null) then
+if BUSES["ATA"] or BUSES["SCSI"] then
MACHINES["T10"] = true
end
-if (MACHINES["T10"]~=null) then
+if MACHINES["T10"] then
files {
MAME_DIR .. "src/devices/machine/t10mmc.cpp",
MAME_DIR .. "src/devices/machine/t10mmc.h",
@@ -3587,7 +3588,7 @@ end
--@src/devices/machine/smartboard.h,MACHINES["TASC_SB30"] = true
---------------------------------------------------
-if (MACHINES["TASC_SB30"]~=null) then
+if MACHINES["TASC_SB30"] then
files {
MAME_DIR .. "src/devices/machine/smartboard.cpp",
MAME_DIR .. "src/devices/machine/smartboard.h",
@@ -3599,7 +3600,7 @@ end
--@src/devices/machine/tc009xlvc.h,MACHINES["TC0091LVC"] = true
---------------------------------------------------
-if (MACHINES["TC0091LVC"]~=null) then
+if MACHINES["TC0091LVC"] then
files {
MAME_DIR .. "src/devices/machine/tc009xlvc.cpp",
MAME_DIR .. "src/devices/machine/tc009xlvc.h",
@@ -3611,7 +3612,7 @@ end
--@src/devices/machine/tdc1008.h,MACHINES["TDC1008"] = true
---------------------------------------------------
-if (MACHINES["TDC1008"]~=null) then
+if MACHINES["TDC1008"] then
files {
MAME_DIR .. "src/devices/machine/tdc1008.cpp",
MAME_DIR .. "src/devices/machine/tdc1008.h",
@@ -3623,7 +3624,7 @@ end
--@src/devices/machine/te7750.h,MACHINES["TE7750"] = true
---------------------------------------------------
-if (MACHINES["TE7750"]~=null) then
+if MACHINES["TE7750"] then
files {
MAME_DIR .. "src/devices/machine/te7750.cpp",
MAME_DIR .. "src/devices/machine/te7750.h",
@@ -3635,7 +3636,7 @@ end
--@src/devices/machine/te7774.h,MACHINES["TE7774"] = true
---------------------------------------------------
-if (MACHINES["TE7774"]~=null) then
+if MACHINES["TE7774"] then
files {
MAME_DIR .. "src/devices/machine/te7774.cpp",
MAME_DIR .. "src/devices/machine/te7774.h",
@@ -3647,7 +3648,7 @@ end
--@src/devices/machine/thmfc1.h,MACHINES["THMFC1"] = true
---------------------------------------------------
-if (MACHINES["THMFC1"]~=null) then
+if MACHINES["THMFC1"] then
files {
MAME_DIR .. "src/devices/machine/thmfc1.cpp",
MAME_DIR .. "src/devices/machine/thmfc1.h",
@@ -3659,7 +3660,7 @@ end
--@src/devices/machine/ticket.h,MACHINES["TICKET"] = true
---------------------------------------------------
-if (MACHINES["TICKET"]~=null) then
+if MACHINES["TICKET"] then
files {
MAME_DIR .. "src/devices/machine/ticket.cpp",
MAME_DIR .. "src/devices/machine/ticket.h",
@@ -3671,7 +3672,7 @@ end
--@src/devices/machine/timekpr.h,MACHINES["TIMEKPR"] = true
---------------------------------------------------
-if (MACHINES["TIMEKPR"]~=null) then
+if MACHINES["TIMEKPR"] then
files {
MAME_DIR .. "src/devices/machine/timekpr.cpp",
MAME_DIR .. "src/devices/machine/timekpr.h",
@@ -3683,7 +3684,7 @@ end
--@src/devices/machine/tmc0430.h,MACHINES["TMC0430"] = true
---------------------------------------------------
-if (MACHINES["TMC0430"]~=null) then
+if MACHINES["TMC0430"] then
files {
MAME_DIR .. "src/devices/machine/tmc0430.cpp",
MAME_DIR .. "src/devices/machine/tmc0430.h",
@@ -3695,7 +3696,7 @@ end
--@src/devices/machine/tmc0999.h,MACHINES["TMC0999"] = true
---------------------------------------------------
-if (MACHINES["TMC0999"]~=null) then
+if MACHINES["TMC0999"] then
files {
MAME_DIR .. "src/devices/machine/tmc0999.cpp",
MAME_DIR .. "src/devices/machine/tmc0999.h",
@@ -3707,7 +3708,7 @@ end
--@src/devices/machine/tmc208k.h,MACHINES["TMC208K"] = true
---------------------------------------------------
-if (MACHINES["TMC208K"]~=null) then
+if MACHINES["TMC208K"] then
files {
MAME_DIR .. "src/devices/machine/tmc208k.cpp",
MAME_DIR .. "src/devices/machine/tmc208k.h",
@@ -3719,7 +3720,7 @@ end
--@src/devices/machine/tms1024.h,MACHINES["TMS1024"] = true
---------------------------------------------------
-if (MACHINES["TMS1024"]~=null) then
+if MACHINES["TMS1024"] then
files {
MAME_DIR .. "src/devices/machine/tms1024.cpp",
MAME_DIR .. "src/devices/machine/tms1024.h",
@@ -3731,7 +3732,7 @@ end
--@src/devices/machine/tms5501.h,MACHINES["TMS5501"] = true
---------------------------------------------------
-if (MACHINES["TMS5501"]~=null) then
+if MACHINES["TMS5501"] then
files {
MAME_DIR .. "src/devices/machine/tms5501.cpp",
MAME_DIR .. "src/devices/machine/tms5501.h",
@@ -3743,7 +3744,7 @@ end
--@src/devices/machine/tms6100.h,MACHINES["TMS6100"] = true
---------------------------------------------------
-if (MACHINES["TMS6100"]~=null) then
+if MACHINES["TMS6100"] then
files {
MAME_DIR .. "src/devices/machine/tms6100.cpp",
MAME_DIR .. "src/devices/machine/tms6100.h",
@@ -3755,7 +3756,7 @@ end
--@src/devices/machine/tms9901.h,MACHINES["TMS9901"] = true
---------------------------------------------------
-if (MACHINES["TMS9901"]~=null) then
+if MACHINES["TMS9901"] then
files {
MAME_DIR .. "src/devices/machine/tms9901.cpp",
MAME_DIR .. "src/devices/machine/tms9901.h",
@@ -3767,7 +3768,7 @@ end
--@src/devices/machine/tms9902.h,MACHINES["TMS9902"] = true
---------------------------------------------------
-if (MACHINES["TMS9902"]~=null) then
+if MACHINES["TMS9902"] then
files {
MAME_DIR .. "src/devices/machine/tms9902.cpp",
MAME_DIR .. "src/devices/machine/tms9902.h",
@@ -3779,7 +3780,7 @@ end
--@src/devices/machine/tms9914.h,MACHINES["TMS9914"] = true
---------------------------------------------------
-if (MACHINES["TMS9914"]~=null) then
+if MACHINES["TMS9914"] then
files {
MAME_DIR .. "src/devices/machine/tms9914.cpp",
MAME_DIR .. "src/devices/machine/tms9914.h",
@@ -3791,7 +3792,7 @@ end
--@src/devices/machine/tsb12lv01a.h,MACHINES["TSB12LV01A"] = true
---------------------------------------------------
-if (MACHINES["TSB12LV01A"]~=null) then
+if MACHINES["TSB12LV01A"] then
files {
MAME_DIR .. "src/devices/machine/tsb12lv01a.cpp",
MAME_DIR .. "src/devices/machine/tsb12lv01a.h",
@@ -3803,7 +3804,7 @@ end
--@src/devices/machine/tube.h,MACHINES["TUBE"] = true
---------------------------------------------------
-if (MACHINES["TUBE"]~=null) then
+if MACHINES["TUBE"] then
files {
MAME_DIR .. "src/devices/machine/tube.cpp",
MAME_DIR .. "src/devices/machine/tube.h",
@@ -3815,7 +3816,7 @@ end
--@src/devices/machine/ucb1200.h,MACHINES["UCB1200"] = true
---------------------------------------------------
-if (MACHINES["UCB1200"]~=null) then
+if MACHINES["UCB1200"] then
files {
MAME_DIR .. "src/devices/machine/ucb1200.cpp",
MAME_DIR .. "src/devices/machine/ucb1200.h",
@@ -3827,7 +3828,7 @@ end
--@src/devices/machine/upc82c710.h,MACHINES["UPC82C710"] = true
---------------------------------------------------
-if (MACHINES["UPC82C710"]~=null) then
+if MACHINES["UPC82C710"] then
files {
MAME_DIR .. "src/devices/machine/upc82c710.cpp",
MAME_DIR .. "src/devices/machine/upc82c710.h",
@@ -3839,7 +3840,7 @@ end
--@src/devices/machine/upc82c711.h,MACHINES["UPC82C711"] = true
---------------------------------------------------
-if (MACHINES["UPC82C711"]~=null) then
+if MACHINES["UPC82C711"] then
files {
MAME_DIR .. "src/devices/machine/upc82c711.cpp",
MAME_DIR .. "src/devices/machine/upc82c711.h",
@@ -3851,7 +3852,7 @@ end
--@src/devices/machine/upd1990a.h,MACHINES["UPD1990A"] = true
---------------------------------------------------
-if (MACHINES["UPD1990A"]~=null) then
+if MACHINES["UPD1990A"] then
files {
MAME_DIR .. "src/devices/machine/upd1990a.cpp",
MAME_DIR .. "src/devices/machine/upd1990a.h",
@@ -3863,7 +3864,7 @@ end
--@src/devices/machine/upd4991a.h,MACHINES["UPD4991A"] = true
---------------------------------------------------
-if (MACHINES["UPD4991A"]~=null) then
+if MACHINES["UPD4991A"] then
files {
MAME_DIR .. "src/devices/machine/upd4991a.cpp",
MAME_DIR .. "src/devices/machine/upd4991a.h",
@@ -3875,7 +3876,7 @@ end
--@src/devices/machine/upd4992.h,MACHINES["UPD4992"] = true
---------------------------------------------------
-if (MACHINES["UPD4992"]~=null) then
+if MACHINES["UPD4992"] then
files {
MAME_DIR .. "src/devices/machine/upd4992.cpp",
MAME_DIR .. "src/devices/machine/upd4992.h",
@@ -3888,7 +3889,7 @@ end
--@src/devices/machine/upd4701.h,MACHINES["UPD4701"] = true
---------------------------------------------------
-if (MACHINES["UPD4701"]~=null) then
+if MACHINES["UPD4701"] then
files {
MAME_DIR .. "src/devices/machine/upd4701.cpp",
MAME_DIR .. "src/devices/machine/upd4701.h",
@@ -3900,7 +3901,7 @@ end
--@src/devices/machine/upd7001.h,MACHINES["UPD7001"] = true
---------------------------------------------------
-if (MACHINES["UPD7001"]~=null) then
+if MACHINES["UPD7001"] then
files {
MAME_DIR .. "src/devices/machine/upd7001.cpp",
MAME_DIR .. "src/devices/machine/upd7001.h",
@@ -3912,7 +3913,7 @@ end
--@src/devices/machine/upd7002.h,MACHINES["UPD7002"] = true
---------------------------------------------------
-if (MACHINES["UPD7002"]~=null) then
+if MACHINES["UPD7002"] then
files {
MAME_DIR .. "src/devices/machine/upd7002.cpp",
MAME_DIR .. "src/devices/machine/upd7002.h",
@@ -3924,7 +3925,7 @@ end
--@src/devices/machine/upd7004.h,MACHINES["UPD7004"] = true
---------------------------------------------------
-if (MACHINES["UPD7004"]~=null) then
+if MACHINES["UPD7004"] then
files {
MAME_DIR .. "src/devices/machine/upd7004.cpp",
MAME_DIR .. "src/devices/machine/upd7004.h",
@@ -3936,7 +3937,7 @@ end
--@src/devices/machine/upd71071.h,MACHINES["UPD71071"] = true
---------------------------------------------------
-if (MACHINES["UPD71071"]~=null) then
+if MACHINES["UPD71071"] then
files {
MAME_DIR .. "src/devices/machine/upd71071.cpp",
MAME_DIR .. "src/devices/machine/upd71071.h",
@@ -3948,7 +3949,7 @@ end
--@src/devices/machine/upd765.h,MACHINES["UPD765"] = true
---------------------------------------------------
-if (MACHINES["UPD765"]~=null) then
+if MACHINES["UPD765"] then
files {
MAME_DIR .. "src/devices/machine/upd765.cpp",
MAME_DIR .. "src/devices/machine/upd765.h",
@@ -3960,7 +3961,7 @@ end
--@src/devices/machine/v3021.h,MACHINES["V3021"] = true
---------------------------------------------------
-if (MACHINES["V3021"]~=null) then
+if MACHINES["V3021"] then
files {
MAME_DIR .. "src/devices/machine/v3021.cpp",
MAME_DIR .. "src/devices/machine/v3021.h",
@@ -3972,7 +3973,7 @@ end
--@src/devices/machine/vic_pl192.h,MACHINES["VIC_PL192"] = true
---------------------------------------------------
-if (MACHINES["VIC_PL192"]~=null) then
+if MACHINES["VIC_PL192"] then
files {
MAME_DIR .. "src/devices/machine/vic_pl192.cpp",
MAME_DIR .. "src/devices/machine/vic_pl192.h",
@@ -3984,7 +3985,7 @@ end
--@src/devices/machine/votraxtnt.h,MACHINES["VOTRAXTNT"] = true
---------------------------------------------------
-if (MACHINES["VOTRAXTNT"]~=null) then
+if MACHINES["VOTRAXTNT"] then
files {
MAME_DIR .. "src/devices/machine/votraxtnt.cpp",
MAME_DIR .. "src/devices/machine/votraxtnt.h",
@@ -3996,7 +3997,7 @@ end
--@src/devices/machine/wd_fdc.h,MACHINES["WD_FDC"] = true
---------------------------------------------------
-if (MACHINES["WD_FDC"]~=null) then
+if MACHINES["WD_FDC"] then
files {
MAME_DIR .. "src/devices/machine/wd_fdc.cpp",
MAME_DIR .. "src/devices/machine/wd_fdc.h",
@@ -4008,7 +4009,7 @@ end
--@src/devices/machine/wd1000.h,MACHINES["WD1000"] = true
---------------------------------------------------
-if (MACHINES["WD1000"]~=null) then
+if MACHINES["WD1000"] then
files {
MAME_DIR .. "src/devices/machine/wd1000.cpp",
MAME_DIR .. "src/devices/machine/wd1000.h",
@@ -4020,7 +4021,7 @@ end
--@src/devices/machine/wd1010.h,MACHINES["WD1010"] = true
---------------------------------------------------
-if (MACHINES["WD1010"]~=null) then
+if MACHINES["WD1010"] then
files {
MAME_DIR .. "src/devices/machine/wd1010.cpp",
MAME_DIR .. "src/devices/machine/wd1010.h",
@@ -4032,7 +4033,7 @@ end
--@src/devices/machine/wd11c00_17.h,MACHINES["WD11C00_17"] = true
---------------------------------------------------
-if (MACHINES["WD11C00_17"]~=null) then
+if MACHINES["WD11C00_17"] then
files {
MAME_DIR .. "src/devices/machine/wd11c00_17.cpp",
MAME_DIR .. "src/devices/machine/wd11c00_17.h",
@@ -4044,7 +4045,7 @@ end
--@src/devices/machine/wd2010.h,MACHINES["WD2010"] = true
---------------------------------------------------
-if (MACHINES["WD2010"]~=null) then
+if MACHINES["WD2010"] then
files {
MAME_DIR .. "src/devices/machine/wd2010.cpp",
MAME_DIR .. "src/devices/machine/wd2010.h",
@@ -4056,7 +4057,7 @@ end
--@src/devices/machine/wd33c9x.h,MACHINES["WD33C9X"] = true
---------------------------------------------------
-if (MACHINES["WD33C9X"]~=null) then
+if MACHINES["WD33C9X"] then
MACHINES["SCSI"] = true
files {
MAME_DIR .. "src/devices/machine/wd33c9x.cpp",
@@ -4069,7 +4070,7 @@ end
--@src/devices/machine/wd7600.h,MACHINES["WD7600"] = true
---------------------------------------------------
-if (MACHINES["WD7600"]~=null) then
+if MACHINES["WD7600"] then
files {
MAME_DIR .. "src/devices/machine/wd7600.cpp",
MAME_DIR .. "src/devices/machine/wd7600.h",
@@ -4081,7 +4082,7 @@ end
--@src/devices/machine/x2201.h,MACHINES["X2201"] = true
---------------------------------------------------
-if (MACHINES["X2201"]~=null) then
+if MACHINES["X2201"] then
files {
MAME_DIR .. "src/devices/machine/x2201.cpp",
MAME_DIR .. "src/devices/machine/x2201.h",
@@ -4093,7 +4094,7 @@ end
--@src/devices/machine/x2212.h,MACHINES["X2212"] = true
---------------------------------------------------
-if (MACHINES["X2212"]~=null) then
+if MACHINES["X2212"] then
files {
MAME_DIR .. "src/devices/machine/x2212.cpp",
MAME_DIR .. "src/devices/machine/x2212.h",
@@ -4105,7 +4106,7 @@ end
--@src/devices/machine/x76f041.h,MACHINES["X76F041"] = true
---------------------------------------------------
-if (MACHINES["X76F041"]~=null) then
+if MACHINES["X76F041"] then
files {
MAME_DIR .. "src/devices/machine/x76f041.cpp",
MAME_DIR .. "src/devices/machine/x76f041.h",
@@ -4117,7 +4118,7 @@ end
--@src/devices/machine/x76f100.h,MACHINES["X76F100"] = true
---------------------------------------------------
-if (MACHINES["X76F100"]~=null) then
+if MACHINES["X76F100"] then
files {
MAME_DIR .. "src/devices/machine/x76f100.cpp",
MAME_DIR .. "src/devices/machine/x76f100.h",
@@ -4129,7 +4130,7 @@ end
--@src/devices/machine/ym2148.h,MACHINES["YM2148"] = true
---------------------------------------------------
-if (MACHINES["YM2148"]~=null) then
+if MACHINES["YM2148"] then
files {
MAME_DIR .. "src/devices/machine/ym2148.cpp",
MAME_DIR .. "src/devices/machine/ym2148.h",
@@ -4141,7 +4142,7 @@ end
--@src/devices/machine/ym3802.h,MACHINES["YM3802"] = true
---------------------------------------------------
-if (MACHINES["YM3802"]~=null) then
+if MACHINES["YM3802"] then
files {
MAME_DIR .. "src/devices/machine/ym3802.cpp",
MAME_DIR .. "src/devices/machine/ym3802.h",
@@ -4153,7 +4154,7 @@ end
--@src/devices/machine/z80ctc.h,MACHINES["Z80CTC"] = true
---------------------------------------------------
-if (MACHINES["Z80CTC"]~=null) then
+if MACHINES["Z80CTC"] then
files {
MAME_DIR .. "src/devices/machine/z80ctc.cpp",
MAME_DIR .. "src/devices/machine/z80ctc.h",
@@ -4165,7 +4166,7 @@ end
--@src/devices/machine/z80sio.h,MACHINES["Z80SIO"] = true
---------------------------------------------------
-if (MACHINES["Z80SIO"]~=null) then
+if MACHINES["Z80SIO"] then
files {
MAME_DIR .. "src/devices/machine/z80sio.cpp",
MAME_DIR .. "src/devices/machine/z80sio.h",
@@ -4177,7 +4178,7 @@ end
--@src/devices/machine/z80scc.h,MACHINES["Z80SCC"] = true
---------------------------------------------------
-if (MACHINES["Z80SCC"]~=null) then
+if MACHINES["Z80SCC"] then
files {
MAME_DIR .. "src/devices/machine/z80scc.cpp",
MAME_DIR .. "src/devices/machine/z80scc.h",
@@ -4189,7 +4190,7 @@ end
--@src/devices/machine/z80dma.h,MACHINES["Z80DMA"] = true
---------------------------------------------------
-if (MACHINES["Z80DMA"]~=null) then
+if MACHINES["Z80DMA"] then
files {
MAME_DIR .. "src/devices/machine/z80dma.cpp",
MAME_DIR .. "src/devices/machine/z80dma.h",
@@ -4201,7 +4202,7 @@ end
--@src/devices/machine/z80pio.h,MACHINES["Z80PIO"] = true
---------------------------------------------------
-if (MACHINES["Z80PIO"]~=null) then
+if MACHINES["Z80PIO"] then
files {
MAME_DIR .. "src/devices/machine/z80pio.cpp",
MAME_DIR .. "src/devices/machine/z80pio.h",
@@ -4213,7 +4214,7 @@ end
--@src/devices/machine/z80sti.h,MACHINES["Z80STI"] = true
---------------------------------------------------
-if (MACHINES["Z80STI"]~=null) then
+if MACHINES["Z80STI"] then
files {
MAME_DIR .. "src/devices/machine/z80sti.cpp",
MAME_DIR .. "src/devices/machine/z80sti.h",
@@ -4225,7 +4226,7 @@ end
--@src/devices/machine/z8536.h,MACHINES["Z8536"] = true
---------------------------------------------------
-if (MACHINES["Z8536"]~=null) then
+if MACHINES["Z8536"] then
files {
MAME_DIR .. "src/devices/machine/z8536.cpp",
MAME_DIR .. "src/devices/machine/z8536.h",
@@ -4237,7 +4238,7 @@ end
--@src/devices/machine/i8255.h,MACHINES["I8255"] = true
---------------------------------------------------
-if (MACHINES["I8255"]~=null) then
+if MACHINES["I8255"] then
files {
MAME_DIR .. "src/devices/machine/i8255.cpp",
MAME_DIR .. "src/devices/machine/i8255.h",
@@ -4251,7 +4252,7 @@ end
--@src/devices/machine/i8256.h,MACHINES["I8256"] = true
---------------------------------------------------
-if (MACHINES["I8256"]~=null) then
+if MACHINES["I8256"] then
files {
MAME_DIR .. "src/devices/machine/i8256.cpp",
MAME_DIR .. "src/devices/machine/i8256.h",
@@ -4263,7 +4264,7 @@ end
--@src/devices/machine/ncr5380.h,MACHINES["NCR5380"] = true
---------------------------------------------------
-if (MACHINES["NCR5380"]~=null) then
+if MACHINES["NCR5380"] then
files {
MAME_DIR .. "src/devices/machine/ncr5380.cpp",
MAME_DIR .. "src/devices/machine/ncr5380.h",
@@ -4275,7 +4276,7 @@ end
--@src/devices/machine/ncr53c90.h,MACHINES["NCR53C90"] = true
---------------------------------------------------
-if (MACHINES["NCR53C90"]~=null) then
+if MACHINES["NCR53C90"] then
files {
MAME_DIR .. "src/devices/machine/ncr53c90.cpp",
MAME_DIR .. "src/devices/machine/ncr53c90.h",
@@ -4287,7 +4288,7 @@ end
--@src/devices/machine/mm58167.h,MACHINES["MM58167"] = true
---------------------------------------------------
-if (MACHINES["MM58167"]~=null) then
+if MACHINES["MM58167"] then
files {
MAME_DIR .. "src/devices/machine/mm58167.cpp",
MAME_DIR .. "src/devices/machine/mm58167.h",
@@ -4299,7 +4300,7 @@ end
--@src/devices/machine/mm58174.h,MACHINES["MM58174"] = true
---------------------------------------------------
-if (MACHINES["MM58174"]~=null) then
+if MACHINES["MM58174"] then
files {
MAME_DIR .. "src/devices/machine/mm58174.cpp",
MAME_DIR .. "src/devices/machine/mm58174.h",
@@ -4312,7 +4313,7 @@ end
--@src/devices/machine/dp8390.h,MACHINES["DP8390"] = true
---------------------------------------------------
-if (MACHINES["DP8390"]~=null) then
+if MACHINES["DP8390"] then
files {
MAME_DIR .. "src/devices/machine/dp8390.cpp",
MAME_DIR .. "src/devices/machine/dp8390.h",
@@ -4324,7 +4325,7 @@ end
--@src/devices/machine/dp83932c.h,MACHINES["DP83932C"] = true
---------------------------------------------------
-if (MACHINES["DP83932C"]~=null) then
+if MACHINES["DP83932C"] then
files {
MAME_DIR .. "src/devices/machine/dp83932c.cpp",
MAME_DIR .. "src/devices/machine/dp83932c.h",
@@ -4336,7 +4337,7 @@ end
--@src/devices/machine/dp8573a.h,MACHINES["DP8573A"] = true
---------------------------------------------------
-if (MACHINES["DP8573A"]~=null) then
+if MACHINES["DP8573A"] then
files {
MAME_DIR .. "src/devices/machine/dp8573a.cpp",
MAME_DIR .. "src/devices/machine/dp8573a.h",
@@ -4348,7 +4349,7 @@ end
--@src/devices/machine/pc_lpt.h,MACHINES["PC_LPT"] = true
---------------------------------------------------
-if (MACHINES["PC_LPT"]~=null) then
+if MACHINES["PC_LPT"] then
files {
MAME_DIR .. "src/devices/machine/pc_lpt.cpp",
MAME_DIR .. "src/devices/machine/pc_lpt.h",
@@ -4360,7 +4361,7 @@ end
--@src/devices/machine/pc_fdc.h,MACHINES["PC_FDC"] = true
---------------------------------------------------
-if (MACHINES["PC_FDC"]~=null) then
+if MACHINES["PC_FDC"] then
files {
MAME_DIR .. "src/devices/machine/pc_fdc.cpp",
MAME_DIR .. "src/devices/machine/pc_fdc.h",
@@ -4372,7 +4373,7 @@ end
--@src/devices/machine/mpu401.h,MACHINES["MPU401"] = true
---------------------------------------------------
-if (MACHINES["MPU401"]~=null) then
+if MACHINES["MPU401"] then
files {
MAME_DIR .. "src/devices/machine/mpu401.cpp",
MAME_DIR .. "src/devices/machine/mpu401.h",
@@ -4384,7 +4385,7 @@ end
--@src/devices/machine/at_keybc.h,MACHINES["AT_KEYBC"] = true
---------------------------------------------------
-if (MACHINES["AT_KEYBC"]~=null) then
+if MACHINES["AT_KEYBC"] then
files {
MAME_DIR .. "src/devices/machine/at_keybc.cpp",
MAME_DIR .. "src/devices/machine/at_keybc.h",
@@ -4397,7 +4398,7 @@ end
--@src/devices/machine/hdc92x4.h,MACHINES["HDC9234"] = true
---------------------------------------------------
-if (MACHINES["HDC9234"]~=null) then
+if MACHINES["HDC9234"] then
files {
MAME_DIR .. "src/devices/machine/hdc92x4.cpp",
MAME_DIR .. "src/devices/machine/hdc92x4.h",
@@ -4409,7 +4410,7 @@ end
--@src/devices/machine/strata.h,MACHINES["STRATA"] = true
---------------------------------------------------
-if (MACHINES["STRATA"]~=null) then
+if MACHINES["STRATA"] then
files {
MAME_DIR .. "src/devices/machine/strata.cpp",
MAME_DIR .. "src/devices/machine/strata.h",
@@ -4421,7 +4422,7 @@ end
--@src/devices/machine/steppers.h,MACHINES["STEPPERS"] = true
---------------------------------------------------
-if (MACHINES["STEPPERS"]~=null) then
+if MACHINES["STEPPERS"] then
files {
MAME_DIR .. "src/devices/machine/steppers.cpp",
MAME_DIR .. "src/devices/machine/steppers.h",
@@ -4433,7 +4434,7 @@ end
--@src/devices/machine/em_reel.h,MACHINES["EM_REEL"] = true
---------------------------------------------------
-if (MACHINES["EM_REEL"]~=null) then
+if MACHINES["EM_REEL"] then
files {
MAME_DIR .. "src/devices/machine/em_reel.cpp",
MAME_DIR .. "src/devices/machine/em_reel.h",
@@ -4444,7 +4445,7 @@ end
--
--@src/devices/machine/corvushd.h,MACHINES["CORVUSHD"] = true
---------------------------------------------------
-if (MACHINES["CORVUSHD"]~=null) then
+if MACHINES["CORVUSHD"] then
files {
MAME_DIR .. "src/devices/machine/corvushd.cpp",
MAME_DIR .. "src/devices/machine/corvushd.h",
@@ -4455,7 +4456,7 @@ end
--
--@src/devices/machine/wozfdc.h,MACHINES["WOZFDC"] = true
---------------------------------------------------
-if (MACHINES["WOZFDC"]~=null) then
+if MACHINES["WOZFDC"] then
files {
MAME_DIR .. "src/devices/machine/wozfdc.cpp",
MAME_DIR .. "src/devices/machine/wozfdc.h",
@@ -4466,7 +4467,7 @@ end
--
--@src/devices/machine/diablo_hd.h,MACHINES["DIABLO_HD"] = true
---------------------------------------------------
-if (MACHINES["DIABLO_HD"]~=null) then
+if MACHINES["DIABLO_HD"] then
files {
MAME_DIR .. "src/devices/machine/diablo_hd.cpp",
MAME_DIR .. "src/devices/machine/diablo_hd.h",
@@ -4478,7 +4479,7 @@ end
--@src/devices/machine/fdc37c665gt.h,MACHINES["FDC37C665GT"] = true
---------------------------------------------------
-if (MACHINES["FDC37C665GT"]~=null) then
+if MACHINES["FDC37C665GT"] then
files {
MAME_DIR .. "src/devices/machine/fdc37c665gt.cpp",
MAME_DIR .. "src/devices/machine/fdc37c665gt.h",
@@ -4490,7 +4491,7 @@ end
--@src/devices/machine/pci9050.h,MACHINES["PCI9050"] = true
---------------------------------------------------
-if (MACHINES["PCI9050"]~=null) then
+if MACHINES["PCI9050"] then
files {
MAME_DIR .. "src/devices/machine/pci9050.cpp",
MAME_DIR .. "src/devices/machine/pci9050.h",
@@ -4502,7 +4503,7 @@ end
--@src/devices/machine/netlist.h,MACHINES["NETLIST"] = true
---------------------------------------------------
-if (MACHINES["NETLIST"]~=null) then
+if MACHINES["NETLIST"] then
files {
MAME_DIR .. "src/devices/machine/netlist.cpp",
MAME_DIR .. "src/devices/machine/netlist.h",
@@ -4514,7 +4515,7 @@ end
--@src/devices/machine/nsc810.h,MACHINES["NSC810"] = true
---------------------------------------------------
-if (MACHINES["NSC810"]~=null) then
+if MACHINES["NSC810"] then
files {
MAME_DIR .. "src/devices/machine/nsc810.cpp",
MAME_DIR .. "src/devices/machine/nsc810.h",
@@ -4526,7 +4527,7 @@ end
--@src/devices/machine/vt82c496.h,MACHINES["VT82C496"] = true
---------------------------------------------------
-if (MACHINES["VT82C496"]~=null) then
+if MACHINES["VT82C496"] then
files {
MAME_DIR .. "src/devices/machine/vt82c496.cpp",
MAME_DIR .. "src/devices/machine/vt82c496.h",
@@ -4538,7 +4539,7 @@ end
--@src/devices/machine/fdc37c93x.h,MACHINES["FDC37C93X"] = true
---------------------------------------------------
-if (MACHINES["FDC37C93X"]~=null) then
+if MACHINES["FDC37C93X"] then
files {
MAME_DIR .. "src/devices/machine/fdc37c93x.cpp",
MAME_DIR .. "src/devices/machine/fdc37c93x.h",
@@ -4550,7 +4551,7 @@ end
--@src/devices/machine/it8705f.h,MACHINES["IT8705F"] = true
---------------------------------------------------
-if (MACHINES["IT8705F"]~=null) then
+if MACHINES["IT8705F"] then
files {
MAME_DIR .. "src/devices/machine/it8705f.cpp",
MAME_DIR .. "src/devices/machine/it8705f.h",
@@ -4562,7 +4563,7 @@ end
--@src/devices/machine/pc87306.h,MACHINES["PC87306"] = true
---------------------------------------------------
-if (MACHINES["PC87306"]~=null) then
+if MACHINES["PC87306"] then
files {
MAME_DIR .. "src/devices/machine/pc87306.cpp",
MAME_DIR .. "src/devices/machine/pc87306.h",
@@ -4574,7 +4575,7 @@ end
--@src/devices/machine/pc97338.h,MACHINES["PC97338"] = true
---------------------------------------------------
-if (MACHINES["PC97338"]~=null) then
+if MACHINES["PC97338"] then
files {
MAME_DIR .. "src/devices/machine/pc97338.cpp",
MAME_DIR .. "src/devices/machine/pc97338.h",
@@ -4586,7 +4587,7 @@ end
--@src/devices/machine/w83787f.h,MACHINES["W83787F"] = true
---------------------------------------------------
-if (MACHINES["W83787F"]~=null) then
+if MACHINES["W83787F"] then
files {
MAME_DIR .. "src/devices/machine/w83787f.cpp",
MAME_DIR .. "src/devices/machine/w83787f.h",
@@ -4598,7 +4599,7 @@ end
--@src/devices/machine/w83977tf.h,MACHINES["W83977TF"] = true
---------------------------------------------------
-if (MACHINES["W83977TF"]~=null) then
+if MACHINES["W83977TF"] then
files {
MAME_DIR .. "src/devices/machine/w83977tf.cpp",
MAME_DIR .. "src/devices/machine/w83977tf.h",
@@ -4611,7 +4612,7 @@ end
--@src/devices/machine/pdc.h,MACHINES["PDC"] = true
---------------------------------------------------
-if (MACHINES["PDC"]~=null) then
+if MACHINES["PDC"] then
files {
MAME_DIR .. "src/devices/machine/pdc.cpp",
MAME_DIR .. "src/devices/machine/pdc.h",
@@ -4623,7 +4624,7 @@ end
--@src/devices/machine/genpc.h,MACHINES["GENPC"] = true
---------------------------------------------------
-if (MACHINES["GENPC"]~=null) then
+if MACHINES["GENPC"] then
files {
MAME_DIR .. "src/devices/machine/genpc.cpp",
MAME_DIR .. "src/devices/machine/genpc.h",
@@ -4635,7 +4636,7 @@ end
--@src/devices/machine/gen_latch.h,MACHINES["GEN_LATCH"] = true
---------------------------------------------------
-if (MACHINES["GEN_LATCH"]~=null) then
+if MACHINES["GEN_LATCH"] then
files {
MAME_DIR .. "src/devices/machine/gen_latch.cpp",
MAME_DIR .. "src/devices/machine/gen_latch.h",
@@ -4647,7 +4648,7 @@ end
--@src/devices/machine/fdc_pll.h,MACHINES["FDC_PLL"] = true
---------------------------------------------------
-if (MACHINES["FDC_PLL"]~=null) then
+if MACHINES["FDC_PLL"] then
files {
MAME_DIR .. "src/devices/machine/fdc_pll.cpp",
MAME_DIR .. "src/devices/machine/fdc_pll.h",
@@ -4659,7 +4660,7 @@ end
--@src/devices/machine/watchdog.h,MACHINES["WATCHDOG"] = true
---------------------------------------------------
-if (MACHINES["WATCHDOG"]~=null) then
+if MACHINES["WATCHDOG"] then
files {
MAME_DIR .. "src/devices/machine/watchdog.cpp",
MAME_DIR .. "src/devices/machine/watchdog.h",
@@ -4671,7 +4672,7 @@ end
--
--@src/devices/machine/smartmed.h,MACHINES["SMARTMEDIA"] = true
---------------------------------------------------
-if (MACHINES["SMARTMEDIA"]~=null) then
+if MACHINES["SMARTMEDIA"] then
files {
MAME_DIR .. "src/devices/machine/smartmed.cpp",
MAME_DIR .. "src/devices/machine/smartmed.h",
@@ -4682,7 +4683,7 @@ end
--
--@src/devices/machine/spi_psram.h,MACHINES["SPIPSRAM"] = true
---------------------------------------------------
-if (MACHINES["SPIPSRAM"]~=null) then
+if MACHINES["SPIPSRAM"] then
files {
MAME_DIR .. "src/devices/machine/spi_psram.cpp",
MAME_DIR .. "src/devices/machine/spi_psram.h",
@@ -4693,7 +4694,7 @@ end
--
--@src/devices/machine/spi_sdcard.h,MACHINES["SPISDCARD"] = true
---------------------------------------------------
-if (MACHINES["SPISDCARD"]~=null) then
+if MACHINES["SPISDCARD"] then
files {
MAME_DIR .. "src/devices/machine/spi_sdcard.cpp",
MAME_DIR .. "src/devices/machine/spi_sdcard.h",
@@ -4704,7 +4705,7 @@ end
--
--@src/devices/machine/scnxx562.h,MACHINES["SCNXX562"] = true
---------------------------------------------------
-if (MACHINES["SCNXX562"]~=null) then
+if MACHINES["SCNXX562"] then
files {
MAME_DIR .. "src/devices/machine/scnxx562.cpp",
MAME_DIR .. "src/devices/machine/scnxx562.h",
@@ -4715,7 +4716,7 @@ end
--
--@src/devices/machine/input_merger.h,MACHINES["INPUT_MERGER"] = true
---------------------------------------------------
-if (MACHINES["INPUT_MERGER"]~=null) then
+if MACHINES["INPUT_MERGER"] then
files {
MAME_DIR .. "src/devices/machine/input_merger.cpp",
MAME_DIR .. "src/devices/machine/input_merger.h",
@@ -4726,7 +4727,7 @@ end
--
--@src/devices/machine/k054321.h,MACHINES["K054321"] = true
---------------------------------------------------
-if (MACHINES["K054321"]~=null) then
+if MACHINES["K054321"] then
files {
MAME_DIR .. "src/devices/machine/k054321.cpp",
MAME_DIR .. "src/devices/machine/k054321.h",
@@ -4738,7 +4739,7 @@ end
--@src/devices/machine/smioc.h,MACHINES["SMIOC"] = true
---------------------------------------------------
-if (MACHINES["SMIOC"]~=null) then
+if MACHINES["SMIOC"] then
files {
MAME_DIR .. "src/devices/machine/smioc.cpp",
MAME_DIR .. "src/devices/machine/smioc.h",
@@ -4750,7 +4751,7 @@ end
--@src/devices/machine/i82586.h,MACHINES["I82586"] = true
---------------------------------------------------
-if (MACHINES["I82586"]~=null) then
+if MACHINES["I82586"] then
files {
MAME_DIR .. "src/devices/machine/i82586.cpp",
MAME_DIR .. "src/devices/machine/i82586.h",
@@ -4762,7 +4763,7 @@ end
--@src/devices/machine/adc0844.h,MACHINES["ADC0844"] = true
---------------------------------------------------
-if (MACHINES["ADC0844"]~=null) then
+if MACHINES["ADC0844"] then
files {
MAME_DIR .. "src/devices/machine/adc0844.cpp",
MAME_DIR .. "src/devices/machine/adc0844.h",
@@ -4774,7 +4775,7 @@ end
--@src/devices/machine/28fxxx.h,MACHINES["28FXXX"] = true
---------------------------------------------------
-if (MACHINES["28FXXX"]~=null) then
+if MACHINES["28FXXX"] then
files {
MAME_DIR .. "src/devices/machine/28fxxx.cpp",
MAME_DIR .. "src/devices/machine/28fxxx.h",
@@ -4786,7 +4787,7 @@ end
--@src/devices/machine/gen_fifo.h,MACHINES["GEN_FIFO"] = true
---------------------------------------------------
-if (MACHINES["GEN_FIFO"]~=null) then
+if MACHINES["GEN_FIFO"] then
files {
MAME_DIR .. "src/devices/machine/gen_fifo.cpp",
MAME_DIR .. "src/devices/machine/gen_fifo.h",
@@ -4798,7 +4799,7 @@ end
--@src/devices/machine/output_latch.h,MACHINES["OUTPUT_LATCH"] = true
---------------------------------------------------
-if (MACHINES["OUTPUT_LATCH"]~=null) then
+if MACHINES["OUTPUT_LATCH"] then
files {
MAME_DIR .. "src/devices/machine/output_latch.cpp",
MAME_DIR .. "src/devices/machine/output_latch.h",
@@ -4810,7 +4811,7 @@ end
--@src/devices/machine/z80daisy.h,MACHINES["Z80DAISY"] = true
---------------------------------------------------
-if (MACHINES["Z80DAISY"]~=null) then
+if MACHINES["Z80DAISY"] then
files {
MAME_DIR .. "src/devices/machine/z80daisy.cpp",
MAME_DIR .. "src/devices/machine/z80daisy.h",
@@ -4824,7 +4825,7 @@ end
--@src/devices/machine/i8291a.h,MACHINES["I8291A"] = true
---------------------------------------------------
-if (MACHINES["I8291A"]~=null) then
+if MACHINES["I8291A"] then
files {
MAME_DIR .. "src/devices/machine/i8291a.cpp",
MAME_DIR .. "src/devices/machine/i8291a.h",
@@ -4836,7 +4837,7 @@ end
--@src/devices/machine/ps2dma.h,MACHINES["PS2DMAC"] = true
---------------------------------------------------
-if (MACHINES["PS2DMAC"]~=null) then
+if MACHINES["PS2DMAC"] then
files {
MAME_DIR .. "src/devices/machine/ps2dma.cpp",
MAME_DIR .. "src/devices/machine/ps2dma.h",
@@ -4848,7 +4849,7 @@ end
--@src/devices/machine/ps2intc.h,MACHINES["PS2INTC"] = true
---------------------------------------------------
-if (MACHINES["PS2INTC"]~=null) then
+if MACHINES["PS2INTC"] then
files {
MAME_DIR .. "src/devices/machine/ps2intc.cpp",
MAME_DIR .. "src/devices/machine/ps2intc.h",
@@ -4860,7 +4861,7 @@ end
--@src/devices/machine/ps2mc.h,MACHINES["PS2MC"] = true
---------------------------------------------------
-if (MACHINES["PS2MC"]~=null) then
+if MACHINES["PS2MC"] then
files {
MAME_DIR .. "src/devices/machine/ps2mc.cpp",
MAME_DIR .. "src/devices/machine/ps2mc.h",
@@ -4872,7 +4873,7 @@ end
--@src/devices/machine/ps2pad.h,MACHINES["PS2PAD"] = true
---------------------------------------------------
-if (MACHINES["PS2PAD"]~=null) then
+if MACHINES["PS2PAD"] then
files {
MAME_DIR .. "src/devices/machine/ps2pad.cpp",
MAME_DIR .. "src/devices/machine/ps2pad.h",
@@ -4884,7 +4885,7 @@ end
--@src/devices/machine/ps2sif.h,MACHINES["PS2SIF"] = true
---------------------------------------------------
-if (MACHINES["PS2SIF"]~=null) then
+if MACHINES["PS2SIF"] then
files {
MAME_DIR .. "src/devices/machine/ps2sif.cpp",
MAME_DIR .. "src/devices/machine/ps2sif.h",
@@ -4896,7 +4897,7 @@ end
--@src/devices/machine/ps2timer.h,MACHINES["PS2TIMER"] = true
---------------------------------------------------
-if (MACHINES["PS2TIMER"]~=null) then
+if MACHINES["PS2TIMER"] then
files {
MAME_DIR .. "src/devices/machine/ps2timer.cpp",
MAME_DIR .. "src/devices/machine/ps2timer.h",
@@ -4908,7 +4909,7 @@ end
--@src/devices/machine/iopcdvd.h,MACHINES["IOPCDVD"] = true
---------------------------------------------------
-if (MACHINES["IOPCDVD"]~=null) then
+if MACHINES["IOPCDVD"] then
files {
MAME_DIR .. "src/devices/machine/iopcdvd.cpp",
MAME_DIR .. "src/devices/machine/iopcdvd.h",
@@ -4920,7 +4921,7 @@ end
--@src/devices/machine/iopdma.h,MACHINES["IOPDMA"] = true
---------------------------------------------------
-if (MACHINES["IOPDMA"]~=null) then
+if MACHINES["IOPDMA"] then
files {
MAME_DIR .. "src/devices/machine/iopdma.cpp",
MAME_DIR .. "src/devices/machine/iopdma.h",
@@ -4932,7 +4933,7 @@ end
--@src/devices/machine/iopintc.h,MACHINES["IOPINTC"] = true
---------------------------------------------------
-if (MACHINES["IOPINTC"]~=null) then
+if MACHINES["IOPINTC"] then
files {
MAME_DIR .. "src/devices/machine/iopintc.cpp",
MAME_DIR .. "src/devices/machine/iopintc.h",
@@ -4944,7 +4945,7 @@ end
--@src/devices/machine/iopsio2.h,MACHINES["IOPSIO2"] = true
---------------------------------------------------
-if (MACHINES["IOPSIO2"]~=null) then
+if MACHINES["IOPSIO2"] then
files {
MAME_DIR .. "src/devices/machine/iopsio2.cpp",
MAME_DIR .. "src/devices/machine/iopsio2.h",
@@ -4956,7 +4957,7 @@ end
--@src/devices/machine/ioptimer.h,MACHINES["IOPTIMER"] = true
---------------------------------------------------
-if (MACHINES["IOPTIMER"]~=null) then
+if MACHINES["IOPTIMER"] then
files {
MAME_DIR .. "src/devices/machine/ioptimer.cpp",
MAME_DIR .. "src/devices/machine/ioptimer.h",
@@ -4968,7 +4969,7 @@ end
--@src/devices/machine/sun4c_mmu.h,MACHINES["SUN4C_MMU"] = true
---------------------------------------------------
-if (MACHINES["SUN4C_MMU"]~=null) then
+if MACHINES["SUN4C_MMU"] then
files {
MAME_DIR .. "src/devices/machine/sun4c_mmu.cpp",
MAME_DIR .. "src/devices/machine/sun4c_mmu.h",
@@ -4980,7 +4981,7 @@ end
--@src/devices/machine/z8038.h,MACHINES["Z8038"] = true
---------------------------------------------------
-if (MACHINES["Z8038"]~=null) then
+if MACHINES["Z8038"] then
files {
MAME_DIR .. "src/devices/machine/z8038.cpp",
MAME_DIR .. "src/devices/machine/z8038.h",
@@ -4992,7 +4993,7 @@ end
--@src/devices/machine/scc2698b.h,MACHINES["SCC2698B"] = true
---------------------------------------------------
-if (MACHINES["SCC2698B"]~=null) then
+if MACHINES["SCC2698B"] then
files {
MAME_DIR .. "src/devices/machine/scc2698b.cpp",
MAME_DIR .. "src/devices/machine/scc2698b.h",
@@ -5004,7 +5005,7 @@ end
--@src/devices/machine/aic565.h,MACHINES["AIC565"] = true
---------------------------------------------------
-if (MACHINES["AIC565"]~=null) then
+if MACHINES["AIC565"] then
files {
MAME_DIR .. "src/devices/machine/aic565.cpp",
MAME_DIR .. "src/devices/machine/aic565.h",
@@ -5016,7 +5017,7 @@ end
--@src/devices/machine/aic580.h,MACHINES["AIC580"] = true
---------------------------------------------------
-if (MACHINES["AIC580"]~=null) then
+if MACHINES["AIC580"] then
files {
MAME_DIR .. "src/devices/machine/aic580.cpp",
MAME_DIR .. "src/devices/machine/aic580.h",
@@ -5028,7 +5029,7 @@ end
--@src/devices/machine/aic6250.h,MACHINES["AIC6250"] = true
---------------------------------------------------
-if (MACHINES["AIC6250"]~=null) then
+if MACHINES["AIC6250"] then
files {
MAME_DIR .. "src/devices/machine/aic6250.cpp",
MAME_DIR .. "src/devices/machine/aic6250.h",
@@ -5040,7 +5041,7 @@ end
--@src/devices/machine/i82357.h,MACHINES["I82357"] = true
---------------------------------------------------
-if (MACHINES["I82357"]~=null) then
+if MACHINES["I82357"] then
files {
MAME_DIR .. "src/devices/machine/i82357.cpp",
MAME_DIR .. "src/devices/machine/i82357.h",
@@ -5052,7 +5053,7 @@ end
--@src/devices/machine/xc1700e.h,MACHINES["XC1700E"] = true
---------------------------------------------------
-if (MACHINES["XC1700E"]~=null) then
+if MACHINES["XC1700E"] then
files {
MAME_DIR .. "src/devices/machine/xc1700e.cpp",
MAME_DIR .. "src/devices/machine/xc1700e.h",
@@ -5064,7 +5065,7 @@ end
--@src/devices/machine/edlc.h,MACHINES["EDLC"] = true
---------------------------------------------------
-if (MACHINES["EDLC"]~=null) then
+if MACHINES["EDLC"] then
files {
MAME_DIR .. "src/devices/machine/edlc.cpp",
MAME_DIR .. "src/devices/machine/edlc.h",
@@ -5076,7 +5077,7 @@ end
--@src/devices/machine/wtl3132.h,MACHINES["WTL3132"] = true
---------------------------------------------------
-if (MACHINES["WTL3132"]~=null) then
+if MACHINES["WTL3132"] then
files {
MAME_DIR .. "src/devices/machine/wtl3132.cpp",
MAME_DIR .. "src/devices/machine/wtl3132.h",
@@ -5088,7 +5089,7 @@ end
--@src/devices/machine/vrender0.h,MACHINES["VRENDER0"] = true
---------------------------------------------------
-if (MACHINES["VRENDER0"]~=null) then
+if MACHINES["VRENDER0"] then
files {
MAME_DIR .. "src/devices/machine/vrender0.cpp",
MAME_DIR .. "src/devices/machine/vr0uart.cpp",
@@ -5101,7 +5102,7 @@ end
--@src/devices/machine/i3001.h,MACHINES["I3001"] = true
---------------------------------------------------
-if (MACHINES["I3001"]~=null) then
+if MACHINES["I3001"] then
files {
MAME_DIR .. "src/devices/machine/i3001.cpp",
MAME_DIR .. "src/devices/machine/i3001.h",
@@ -5113,7 +5114,7 @@ end
--@src/devices/machine/i3002.h,MACHINES["I3002"] = true
---------------------------------------------------
-if (MACHINES["I3002"]~=null) then
+if MACHINES["I3002"] then
files {
MAME_DIR .. "src/devices/machine/i3002.cpp",
MAME_DIR .. "src/devices/machine/i3002.h",
@@ -5125,7 +5126,7 @@ end
--@src/devices/machine/s_smp.h,MACHINES["S_SMP"] = true
---------------------------------------------------
-if (MACHINES["S_SMP"]~=null) then
+if MACHINES["S_SMP"] then
files {
MAME_DIR .. "src/devices/machine/s_smp.cpp",
MAME_DIR .. "src/devices/machine/s_smp.h",
@@ -5137,7 +5138,7 @@ end
--@src/devices/machine/cxd1185.h,MACHINES["CXD1185"] = true
---------------------------------------------------
-if (MACHINES["CXD1185"]~=null) then
+if MACHINES["CXD1185"] then
MACHINES["NSCSI"] = true
files {
MAME_DIR .. "src/devices/machine/cxd1185.cpp",
@@ -5150,7 +5151,7 @@ end
--@src/devices/machine/spifi3.h,MACHINES["SPIFI3"] = true
---------------------------------------------------
-if (MACHINES["SPIFI3"]~=null) then
+if MACHINES["SPIFI3"] then
MACHINES["NSCSI"] = true
files {
MAME_DIR .. "src/devices/machine/spifi3.cpp",
@@ -5162,7 +5163,7 @@ end
--
--@src/devices/machine/applefdintf.h,MACHINES["APPLE_FDINTF"] = true
---------------------------------------------------
-if (MACHINES["APPLE_FDINTF"]~=null) then
+if MACHINES["APPLE_FDINTF"] then
files {
MAME_DIR .. "src/devices/machine/applefdintf.cpp",
MAME_DIR .. "src/devices/machine/applefdintf.h",
@@ -5173,7 +5174,7 @@ end
--
--@src/devices/machine/iwm.h,MACHINES["IWM"] = true
---------------------------------------------------
-if (MACHINES["IWM"]~=null) then
+if MACHINES["IWM"] then
files {
MAME_DIR .. "src/devices/machine/iwm.cpp",
MAME_DIR .. "src/devices/machine/iwm.h",
@@ -5184,7 +5185,7 @@ end
--
--@src/devices/machine/swim1.h,MACHINES["SWIM1"] = true
---------------------------------------------------
-if (MACHINES["SWIM1"]~=null) then
+if MACHINES["SWIM1"] then
files {
MAME_DIR .. "src/devices/machine/swim1.cpp",
MAME_DIR .. "src/devices/machine/swim1.h",
@@ -5195,7 +5196,7 @@ end
--
--@src/devices/machine/swim2.h,MACHINES["SWIM2"] = true
---------------------------------------------------
-if (MACHINES["SWIM2"]~=null) then
+if MACHINES["SWIM2"] then
files {
MAME_DIR .. "src/devices/machine/swim2.cpp",
MAME_DIR .. "src/devices/machine/swim2.h",
@@ -5206,7 +5207,7 @@ end
--
--@src/devices/machine/swim3.h,MACHINES["SWIM3"] = true
---------------------------------------------------
-if (MACHINES["SWIM3"]~=null) then
+if MACHINES["SWIM3"] then
files {
MAME_DIR .. "src/devices/machine/swim3.cpp",
MAME_DIR .. "src/devices/machine/swim3.h",
@@ -5217,7 +5218,7 @@ end
--
--@src/devices/machine/mv_sonora.h,MACHINES["MAC_VIDEO_SONORA"] = true
---------------------------------------------------
-if (MACHINES["MAC_VIDEO_SONORA"]~=null) then
+if MACHINES["MAC_VIDEO_SONORA"] then
files {
MAME_DIR .. "src/devices/machine/mv_sonora.cpp",
MAME_DIR .. "src/devices/machine/mv_sonora.h",
@@ -5228,7 +5229,7 @@ end
--
--@src/devices/machine/alpha_8921.h,MACHINES["ALPHA_8921"] = true
---------------------------------------------------
-if (MACHINES["ALPHA_8921"]~=null) then
+if MACHINES["ALPHA_8921"] then
files {
MAME_DIR .. "src/devices/machine/alpha_8921.cpp",
MAME_DIR .. "src/devices/machine/alpha_8921.h",
@@ -5239,7 +5240,7 @@ end
--
--@src/devices/machine/bl_handhelds_menucontrol.h,MACHINES["BL_HANDHELDS_MENUCONTROL"] = true
---------------------------------------------------
-if (MACHINES["BL_HANDHELDS_MENUCONTROL"]~=null) then
+if MACHINES["BL_HANDHELDS_MENUCONTROL"] then
files {
MAME_DIR .. "src/devices/machine/bl_handhelds_menucontrol.cpp",
MAME_DIR .. "src/devices/machine/bl_handhelds_menucontrol.h",
@@ -5250,7 +5251,7 @@ end
--
--@src/devices/machine/ns32081.h,MACHINES["NS32081"] = true
---------------------------------------------------
-if (MACHINES["NS32081"]~=null) then
+if MACHINES["NS32081"] then
files {
MAME_DIR .. "src/devices/machine/ns32081.cpp",
MAME_DIR .. "src/devices/machine/ns32081.h",
@@ -5261,7 +5262,7 @@ end
--
--@src/devices/machine/ns32202.h,MACHINES["NS32202"] = true
---------------------------------------------------
-if (MACHINES["NS32202"]~=null) then
+if MACHINES["NS32202"] then
files {
MAME_DIR .. "src/devices/machine/ns32202.cpp",
MAME_DIR .. "src/devices/machine/ns32202.h",
@@ -5272,7 +5273,7 @@ end
--
--@src/devices/machine/ns32082.h,MACHINES["NS32082"] = true
---------------------------------------------------
-if (MACHINES["NS32082"]~=null) then
+if MACHINES["NS32082"] then
files {
MAME_DIR .. "src/devices/machine/ns32082.cpp",
MAME_DIR .. "src/devices/machine/ns32082.h",
@@ -5283,7 +5284,7 @@ end
--
--@src/devices/machine/bitmap_printer.h,MACHINES["BITMAP_PRINTER"] = true
---------------------------------------------------
-if (MACHINES["BITMAP_PRINTER"]~=null) then
+if MACHINES["BITMAP_PRINTER"] then
files {
MAME_DIR .. "src/devices/machine/bitmap_printer.cpp",
MAME_DIR .. "src/devices/machine/bitmap_printer.h",
@@ -5294,7 +5295,7 @@ end
--
--@src/devices/machine/ns32382.h,MACHINES["NS32382"] = true
---------------------------------------------------
-if (MACHINES["NS32382"]~=null) then
+if MACHINES["NS32382"] then
files {
MAME_DIR .. "src/devices/machine/ns32382.cpp",
MAME_DIR .. "src/devices/machine/ns32382.h",
@@ -5305,7 +5306,7 @@ end
--
--@src/devices/machine/fm_scsi.h,MACHINES["FM_SCSI"] = true
---------------------------------------------------
-if (MACHINES["FM_SCSI"]~=null) then
+if MACHINES["FM_SCSI"] then
files {
MAME_DIR .. "src/devices/machine/fm_scsi.cpp",
MAME_DIR .. "src/devices/machine/fm_scsi.h",
@@ -5316,7 +5317,7 @@ end
--
--@src/devices/machine/archimedes_keyb.h,MACHINES["ARCHIMEDES_KEYB"] = true
---------------------------------------------------
-if (MACHINES["ARCHIMEDES_KEYB"]~=null) then
+if MACHINES["ARCHIMEDES_KEYB"] then
files {
MAME_DIR .. "src/devices/machine/archimedes_keyb.cpp",
MAME_DIR .. "src/devices/machine/archimedes_keyb.h",
@@ -5327,7 +5328,7 @@ end
--
--@src/devices/machine/cammu.h,MACHINES["CAMMU"] = true
---------------------------------------------------
-if (MACHINES["CAMMU"]~=null) then
+if MACHINES["CAMMU"] then
files {
MAME_DIR .. "src/devices/machine/cammu.cpp",
MAME_DIR .. "src/devices/machine/cammu.h",
@@ -5338,7 +5339,7 @@ end
--
--@src/devices/machine/at.h,MACHINES["AT_MB"] = true
---------------------------------------------------
-if (MACHINES["AT_MB"]~=null) then
+if MACHINES["AT_MB"] then
files {
MAME_DIR .. "src/devices/machine/at.cpp",
MAME_DIR .. "src/devices/machine/at.h",
@@ -5349,7 +5350,7 @@ end
--
--@src/devices/machine/bacta_datalogger.h,MACHINES["BACTA_DATALOGGER"] = true
---------------------------------------------------
-if (MACHINES["BACTA_DATALOGGER"]~=null) then
+if MACHINES["BACTA_DATALOGGER"] then
files {
MAME_DIR .. "src/devices/machine/bacta_datalogger.cpp",
MAME_DIR .. "src/devices/machine/bacta_datalogger.h",
@@ -5360,7 +5361,7 @@ end
--
--@src/devices/machine/nmk112.h,MACHINES["NMK112"] = true
---------------------------------------------------
-if (MACHINES["NMK112"]~=null) then
+if MACHINES["NMK112"] then
files {
MAME_DIR .. "src/devices/machine/nmk112.cpp",
MAME_DIR .. "src/devices/machine/nmk112.h",
@@ -5371,7 +5372,7 @@ end
--
--@src/devices/machine/saa7191.h,MACHINES["SAA7191"] = true
---------------------------------------------------
-if (MACHINES["SAA7191"]~=null) then
+if MACHINES["SAA7191"] then
files {
MAME_DIR .. "src/devices/machine/saa7191.cpp",
MAME_DIR .. "src/devices/machine/saa7191.h",
@@ -5382,7 +5383,7 @@ end
--
--@src/devices/machine/segacrpt_device.h,MACHINES["SEGACRPT"] = true
---------------------------------------------------
-if (MACHINES["SEGACRPT"]~=null) then
+if MACHINES["SEGACRPT"] then
files {
MAME_DIR .. "src/devices/machine/segacrpt_device.cpp",
MAME_DIR .. "src/devices/machine/segacrpt_device.h",
@@ -5393,7 +5394,7 @@ end
--
--@src/devices/machine/segacrp2_device.h,MACHINES["SEGACRP2"] = true
---------------------------------------------------
-if (MACHINES["SEGACRP2"]~=null) then
+if MACHINES["SEGACRP2"] then
files {
MAME_DIR .. "src/devices/machine/segacrp2_device.cpp",
MAME_DIR .. "src/devices/machine/segacrp2_device.h",
@@ -5405,7 +5406,7 @@ end
--@src/devices/machine/am9516.h,MACHINES["AM9516"] = true
---------------------------------------------------
-if (MACHINES["AM9516"]~=null) then
+if MACHINES["AM9516"] then
files {
MAME_DIR .. "src/devices/machine/am9516.cpp",
MAME_DIR .. "src/devices/machine/am9516.h",
@@ -5417,7 +5418,7 @@ end
--@src/devices/machine/micomxe1a.h,MACHINES["MICOMXE1A"] = true
---------------------------------------------------
-if (MACHINES["MICOMXE1A"]~=null) then
+if MACHINES["MICOMXE1A"] then
files {
MAME_DIR .. "src/devices/machine/micomxe1a.cpp",
MAME_DIR .. "src/devices/machine/micomxe1a.h",
@@ -5428,7 +5429,7 @@ end
--
--@src/devices/machine/mc88200.h,MACHINES["MC88200"] = true
---------------------------------------------------
-if (MACHINES["MC88200"]~=null) then
+if MACHINES["MC88200"] then
files {
MAME_DIR .. "src/devices/machine/mc88200.cpp",
MAME_DIR .. "src/devices/machine/mc88200.h",
@@ -5440,7 +5441,7 @@ end
--@src/devices/machine/tc9223.h,MACHINES["TC9223"] = true
---------------------------------------------------
-if (MACHINES["TC9223"]~=null) then
+if MACHINES["TC9223"] then
files {
MAME_DIR .. "src/devices/machine/tc9223.cpp",
MAME_DIR .. "src/devices/machine/tc9223.h",
@@ -5451,7 +5452,7 @@ end
--@src/devices/machine/upd7261.h,MACHINES["UPD7261"] = true
---------------------------------------------------
-if (MACHINES["UPD7261"]~=null) then
+if MACHINES["UPD7261"] then
files {
MAME_DIR .. "src/devices/machine/upd7261.cpp",
MAME_DIR .. "src/devices/machine/upd7261.h",
@@ -5462,7 +5463,7 @@ end
--
--@src/devices/machine/cat702.h,MACHINES["CAT702"] = true
---------------------------------------------------
-if (MACHINES["CAT702"]~=null) then
+if MACHINES["CAT702"] then
files {
MAME_DIR .. "src/devices/machine/cat702.cpp",
MAME_DIR .. "src/devices/machine/cat702.h",
@@ -5473,7 +5474,7 @@ end
--
--@src/devices/machine/sci4.h,MACHINES["SCI4"] = true
---------------------------------------------------
-if (MACHINES["SCI4"]~=null) then
+if MACHINES["SCI4"] then
files {
MAME_DIR .. "src/devices/machine/sci4.cpp",
MAME_DIR .. "src/devices/machine/sci4.h",
@@ -5484,7 +5485,7 @@ end
--
--@src/devices/machine/sun1_mmu.h,MACHINES["SUN1_MMU"] = true
---------------------------------------------------
-if (MACHINES["SUN1_MMU"]~=null) then
+if MACHINES["SUN1_MMU"] then
files {
MAME_DIR .. "src/devices/machine/sun1_mmu.cpp",
MAME_DIR .. "src/devices/machine/sun1_mmu.h",
@@ -5496,7 +5497,7 @@ end
--@src/devices/machine/quadmouse.h,MACHINES["QUADMOUSE"] = true
---------------------------------------------------
-if (MACHINES["QUADMOUSE"]~=null) then
+if MACHINES["QUADMOUSE"] then
files {
MAME_DIR .. "src/devices/machine/quadmouse.cpp",
MAME_DIR .. "src/devices/machine/quadmouse.h",