diff options
Diffstat (limited to 'scripts/src/sound.lua')
| -rw-r--r-- | scripts/src/sound.lua | 302 |
1 files changed, 151 insertions, 151 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index f30089caa16..ab764d9763f 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -32,28 +32,28 @@ files { --@src/devices/sound/beep.h,SOUNDS["BEEP"] = true --------------------------------------------------- -if (SOUNDS["DAC"]~=null) then +if SOUNDS["DAC"] then files { MAME_DIR .. "src/devices/sound/dac.cpp", MAME_DIR .. "src/devices/sound/dac.h", } end -if (SOUNDS["DMADAC"]~=null) then +if SOUNDS["DMADAC"] then files { MAME_DIR .. "src/devices/sound/dmadac.cpp", MAME_DIR .. "src/devices/sound/dmadac.h", } end -if (SOUNDS["SPEAKER"]~=null) then +if SOUNDS["SPEAKER"] then files { MAME_DIR .. "src/devices/sound/spkrdev.cpp", MAME_DIR .. "src/devices/sound/spkrdev.h", } end -if (SOUNDS["BEEP"]~=null) then +if SOUNDS["BEEP"] then files { MAME_DIR .. "src/devices/sound/beep.cpp", MAME_DIR .. "src/devices/sound/beep.h", @@ -67,7 +67,7 @@ end --@src/devices/sound/cdda.h,SOUNDS["CDDA"] = true --------------------------------------------------- -if (SOUNDS["CDDA"]~=null) then +if SOUNDS["CDDA"] then files { MAME_DIR .. "src/devices/sound/cdda.cpp", MAME_DIR .. "src/devices/sound/cdda.h", @@ -81,7 +81,7 @@ end --@src/devices/sound/discrete.h,SOUNDS["DISCRETE"] = true --------------------------------------------------- -if (SOUNDS["DISCRETE"]~=null) then +if SOUNDS["DISCRETE"] then files { MAME_DIR .. "src/devices/sound/discrete.cpp", MAME_DIR .. "src/devices/sound/discrete.h", @@ -104,7 +104,7 @@ end --@src/devices/sound/pci-ac97.h,SOUNDS["AC97"] = true --------------------------------------------------- -if (SOUNDS["AC97"]~=null) then +if SOUNDS["AC97"] then files { MAME_DIR .. "src/devices/sound/pci-ac97.cpp", MAME_DIR .. "src/devices/sound/pci-ac97.h", @@ -118,14 +118,14 @@ end --@src/devices/sound/awacs.h,SOUNDS["AWACS"] = true --------------------------------------------------- -if (SOUNDS["ASC"]~=null) then +if SOUNDS["ASC"] then files { MAME_DIR .. "src/devices/sound/asc.cpp", MAME_DIR .. "src/devices/sound/asc.h", } end -if (SOUNDS["AWACS"]~=null) then +if SOUNDS["AWACS"] then files { MAME_DIR .. "src/devices/sound/awacs.cpp", MAME_DIR .. "src/devices/sound/awacs.h", @@ -139,14 +139,14 @@ end --@src/devices/sound/tiaintf.h,SOUNDS["TIA"] = true --------------------------------------------------- -if (SOUNDS["POKEY"]~=null) then +if SOUNDS["POKEY"] then files { MAME_DIR .. "src/devices/sound/pokey.cpp", MAME_DIR .. "src/devices/sound/pokey.h", } end -if (SOUNDS["TIA"]~=null) then +if SOUNDS["TIA"] then files { MAME_DIR .. "src/devices/sound/tiasound.cpp", MAME_DIR .. "src/devices/sound/tiasound.h", @@ -160,7 +160,7 @@ end --@src/devices/sound/astrocde.h,SOUNDS["ASTROCADE"] = true --------------------------------------------------- -if (SOUNDS["ASTROCADE"]~=null) then +if SOUNDS["ASTROCADE"] then files { MAME_DIR .. "src/devices/sound/astrocde.cpp", MAME_DIR .. "src/devices/sound/astrocde.h", @@ -174,7 +174,7 @@ end --@src/devices/sound/pic-ac97.h,SOUNDS["AC97"] = true --------------------------------------------------- -if (SOUNDS["AC97"]~=null) then +if SOUNDS["AC97"] then files { MAME_DIR .. "src/devices/sound/pci-ac97.cpp", MAME_DIR .. "src/devices/sound/pci-ac97.h", @@ -188,7 +188,7 @@ end --@src/devices/sound/cem3394.h,SOUNDS["CEM3394"] = true --------------------------------------------------- -if (SOUNDS["CEM3394"]~=null) then +if SOUNDS["CEM3394"] then files { MAME_DIR .. "src/devices/sound/cem3394.cpp", MAME_DIR .. "src/devices/sound/cem3394.h", @@ -202,7 +202,7 @@ end --@src/devices/sound/ct1745.h,SOUNDS["CT1745"] = true --------------------------------------------------- -if (SOUNDS["CT1745"]~=null) then +if SOUNDS["CT1745"] then files { MAME_DIR .. "src/devices/sound/ct1745.cpp", MAME_DIR .. "src/devices/sound/ct1745.h", @@ -216,7 +216,7 @@ end --@src/devices/sound/sb0400.h,SOUNDS["SB0400"] = true --------------------------------------------------- -if (SOUNDS["SB0400"]~=null) then +if SOUNDS["SB0400"] then files { MAME_DIR .. "src/devices/sound/sb0400.cpp", MAME_DIR .. "src/devices/sound/sb0400.h", @@ -229,7 +229,7 @@ end --@src/devices/sound/es1373.h,SOUNDS["ES1373"] = true -------------------------------------------------- -if (SOUNDS["ES1373"]~=null) then +if SOUNDS["ES1373"] then files { MAME_DIR .. "src/devices/sound/es1373.cpp", MAME_DIR .. "src/devices/sound/es1373.h", @@ -241,7 +241,7 @@ end --@src/devices/sound/es5503.h,SOUNDS["ES5503"] = true --------------------------------------------------- -if (SOUNDS["ES5503"]~=null) then +if SOUNDS["ES5503"] then files { MAME_DIR .. "src/devices/sound/es5503.cpp", MAME_DIR .. "src/devices/sound/es5503.h", @@ -254,7 +254,7 @@ end --@src/devices/sound/es5506.h,SOUNDS["ES5505"] = true --------------------------------------------------- -if (SOUNDS["ES5505"]~=null or SOUNDS["ES5506"]~=null) then +if SOUNDS["ES5505"]~=null or SOUNDS["ES5506"] then files { MAME_DIR .. "src/devices/sound/es5506.cpp", MAME_DIR .. "src/devices/sound/es5506.h", @@ -267,7 +267,7 @@ end --@src/devices/sound/esqpump.h,SOUNDS["ESQPUMP"] = true --------------------------------------------------- -if (SOUNDS["ESQPUMP"]~=null) then +if SOUNDS["ESQPUMP"] then files { MAME_DIR .. "src/devices/sound/esqpump.cpp", MAME_DIR .. "src/devices/sound/esqpump.h", @@ -280,7 +280,7 @@ end --@src/devices/sound/bsmt2000.h,SOUNDS["BSMT2000"] = true --------------------------------------------------- -if (SOUNDS["BSMT2000"]~=null) then +if SOUNDS["BSMT2000"] then files { MAME_DIR .. "src/devices/sound/bsmt2000.cpp", MAME_DIR .. "src/devices/sound/bsmt2000.h", @@ -294,7 +294,7 @@ end --@src/devices/sound/es8712.h,SOUNDS["ES8712"] = true --------------------------------------------------- -if (SOUNDS["ES8712"]~=null) then +if SOUNDS["ES8712"] then files { MAME_DIR .. "src/devices/sound/es8712.cpp", MAME_DIR .. "src/devices/sound/es8712.h", @@ -308,7 +308,7 @@ end --@src/devices/sound/gaelco.h,SOUNDS["GAELCO_CG1V"] = true --------------------------------------------------- -if (SOUNDS["GAELCO_CG1V"]~=null or SOUNDS["GAELCO_GAE1"]~=null) then +if SOUNDS["GAELCO_CG1V"]~=null or SOUNDS["GAELCO_GAE1"] then files { MAME_DIR .. "src/devices/sound/gaelco.cpp", MAME_DIR .. "src/devices/sound/gaelco.h", @@ -321,7 +321,7 @@ end --@src/devices/sound/cdp1863.h,SOUNDS["CDP1863"] = true --------------------------------------------------- -if (SOUNDS["CDP1863"]~=null) then +if SOUNDS["CDP1863"] then files { MAME_DIR .. "src/devices/sound/cdp1863.cpp", MAME_DIR .. "src/devices/sound/cdp1863.h", @@ -335,7 +335,7 @@ end --@src/devices/sound/cdp1864.h,SOUNDS["CDP1864"] = true --------------------------------------------------- -if (SOUNDS["CDP1864"]~=null) then +if SOUNDS["CDP1864"] then files { MAME_DIR .. "src/devices/sound/cdp1864.cpp", MAME_DIR .. "src/devices/sound/cdp1864.h", @@ -349,7 +349,7 @@ end --@src/devices/sound/cdp1869.h,SOUNDS["CDP1869"] = true --------------------------------------------------- -if (SOUNDS["CDP1869"]~=null) then +if SOUNDS["CDP1869"] then files { MAME_DIR .. "src/devices/sound/cdp1869.cpp", MAME_DIR .. "src/devices/sound/cdp1869.h", @@ -363,7 +363,7 @@ end --@src/devices/sound/ay8910.h,SOUNDS["AY8910"] = true --------------------------------------------------- -if (SOUNDS["AY8910"]~=null) then +if SOUNDS["AY8910"] then files { MAME_DIR .. "src/devices/sound/ay8910.cpp", MAME_DIR .. "src/devices/sound/ay8910.h", @@ -377,7 +377,7 @@ end --@src/devices/sound/hc55516.h,SOUNDS["HC55516"] = true --------------------------------------------------- -if (SOUNDS["HC55516"]~=null) then +if SOUNDS["HC55516"] then files { MAME_DIR .. "src/devices/sound/hc55516.cpp", MAME_DIR .. "src/devices/sound/hc55516.h", @@ -391,7 +391,7 @@ end --@src/devices/sound/huc6230.h,SOUNDS["HUC6230"] = true --------------------------------------------------- -if (SOUNDS["HUC6230"]~=null) then +if SOUNDS["HUC6230"] then files { MAME_DIR .. "src/devices/sound/huc6230.cpp", MAME_DIR .. "src/devices/sound/huc6230.h", @@ -405,7 +405,7 @@ end --@src/devices/sound/c6280.h,SOUNDS["C6280"] = true --------------------------------------------------- -if (SOUNDS["C6280"]~=null) then +if SOUNDS["C6280"] then files { MAME_DIR .. "src/devices/sound/c6280.cpp", MAME_DIR .. "src/devices/sound/c6280.h", @@ -419,7 +419,7 @@ end --@src/devices/sound/ics2115.h,SOUNDS["ICS2115"] = true --------------------------------------------------- -if (SOUNDS["ICS2115"]~=null) then +if SOUNDS["ICS2115"] then files { MAME_DIR .. "src/devices/sound/ics2115.cpp", MAME_DIR .. "src/devices/sound/ics2115.h", @@ -433,7 +433,7 @@ end --@src/devices/sound/i5000.h,SOUNDS["I5000_SND"] = true --------------------------------------------------- -if (SOUNDS["I5000_SND"]~=null) then +if SOUNDS["I5000_SND"] then files { MAME_DIR .. "src/devices/sound/i5000.cpp", MAME_DIR .. "src/devices/sound/i5000.h", @@ -447,7 +447,7 @@ end --@src/devices/sound/iremga20.h,SOUNDS["IREMGA20"] = true --------------------------------------------------- -if (SOUNDS["IREMGA20"]~=null) then +if SOUNDS["IREMGA20"] then files { MAME_DIR .. "src/devices/sound/iremga20.cpp", MAME_DIR .. "src/devices/sound/iremga20.h", @@ -466,42 +466,42 @@ end --@src/devices/sound/k056800.h,SOUNDS["K056800"] = true --------------------------------------------------- -if (SOUNDS["K005289"]~=null) then +if SOUNDS["K005289"] then files { MAME_DIR .. "src/devices/sound/k005289.cpp", MAME_DIR .. "src/devices/sound/k005289.h", } end -if (SOUNDS["K007232"]~=null) then +if SOUNDS["K007232"] then files { MAME_DIR .. "src/devices/sound/k007232.cpp", MAME_DIR .. "src/devices/sound/k007232.h", } end -if (SOUNDS["K051649"]~=null) then +if SOUNDS["K051649"] then files { MAME_DIR .. "src/devices/sound/k051649.cpp", MAME_DIR .. "src/devices/sound/k051649.h", } end -if (SOUNDS["K053260"]~=null) then +if SOUNDS["K053260"] then files { MAME_DIR .. "src/devices/sound/k053260.cpp", MAME_DIR .. "src/devices/sound/k053260.h", } end -if (SOUNDS["K054539"]~=null) then +if SOUNDS["K054539"] then files { MAME_DIR .. "src/devices/sound/k054539.cpp", MAME_DIR .. "src/devices/sound/k054539.h", } end -if (SOUNDS["K056800"]~=null) then +if SOUNDS["K056800"] then files { MAME_DIR .. "src/devices/sound/k056800.cpp", MAME_DIR .. "src/devices/sound/k056800.h", @@ -513,7 +513,7 @@ end --@src/devices/sound/l4003.h,SOUNDS["L4003"] = true --------------------------------------------------- -if (SOUNDS["L4003"]~=null) then +if SOUNDS["L4003"] then files { MAME_DIR .. "src/devices/sound/l4003.cpp", MAME_DIR .. "src/devices/sound/l4003.h", @@ -525,7 +525,7 @@ end --@src/devices/sound/l7a1045_l6028_dsp_a.h,SOUNDS["L7A1045"] = true --------------------------------------------------- -if (SOUNDS["L7A1045"]~=null) then +if SOUNDS["L7A1045"] then files { MAME_DIR .. "src/devices/sound/l7a1045_l6028_dsp_a.cpp", MAME_DIR .. "src/devices/sound/l7a1045_l6028_dsp_a.h", @@ -538,7 +538,7 @@ end --@src/devices/sound/lmc1992.h,SOUNDS["LMC1992"] = true --------------------------------------------------- -if (SOUNDS["LMC1992"]~=null) then +if SOUNDS["LMC1992"] then files { MAME_DIR .. "src/devices/sound/lmc1992.cpp", MAME_DIR .. "src/devices/sound/lmc1992.h", @@ -552,7 +552,7 @@ end --@src/devices/sound/mas3507d.h,SOUNDS["MAS3507D"] = true --------------------------------------------------- -if (SOUNDS["MAS3507D"]~=null) then +if SOUNDS["MAS3507D"] then files { MAME_DIR .. "src/devices/sound/mas3507d.cpp", MAME_DIR .. "src/devices/sound/mas3507d.h", @@ -566,7 +566,7 @@ end --@src/devices/sound/dac3350a.h,SOUNDS["DAC3350A"] = true --------------------------------------------------- -if (SOUNDS["DAC3350A"]~=null) then +if SOUNDS["DAC3350A"] then files { MAME_DIR .. "src/devices/sound/dac3350a.cpp", MAME_DIR .. "src/devices/sound/dac3350a.h", @@ -580,7 +580,7 @@ end --@src/devices/sound/mea8000.h,SOUNDS["MEA8000"] = true --------------------------------------------------- -if (SOUNDS["MEA8000"]~=null) then +if SOUNDS["MEA8000"] then files { MAME_DIR .. "src/devices/sound/mea8000.cpp", MAME_DIR .. "src/devices/sound/mea8000.h", @@ -594,7 +594,7 @@ end --@src/devices/sound/mos6560.h,SOUNDS["MOS656X"] = true --------------------------------------------------- -if (SOUNDS["MOS656X"]~=null) then +if SOUNDS["MOS656X"] then files { MAME_DIR .. "src/devices/sound/mos6560.cpp", MAME_DIR .. "src/devices/sound/mos6560.h", @@ -608,7 +608,7 @@ end --@src/devices/sound/mos7360.h,SOUNDS["MOS7360"] = true --------------------------------------------------- -if (SOUNDS["MOS7360"]~=null) then +if SOUNDS["MOS7360"] then files { MAME_DIR .. "src/devices/sound/mos7360.cpp", MAME_DIR .. "src/devices/sound/mos7360.h", @@ -626,35 +626,35 @@ end --@src/devices/sound/c352.h,SOUNDS["C352"] = true --------------------------------------------------- -if (SOUNDS["NAMCO"]~=null or SOUNDS["NAMCO_15XX"]~=null or SOUNDS["NAMCO_CUS30"]~=null) then +if SOUNDS["NAMCO"]~=null or SOUNDS["NAMCO_15XX"]~=null or SOUNDS["NAMCO_CUS30"] then files { MAME_DIR .. "src/devices/sound/namco.cpp", MAME_DIR .. "src/devices/sound/namco.h", } end -if (SOUNDS["NAMCO_163"]~=null) then +if SOUNDS["NAMCO_163"] then files { MAME_DIR .. "src/devices/sound/namco_163.cpp", MAME_DIR .. "src/devices/sound/namco_163.h", } end -if (SOUNDS["NAMCO_63701X"]~=null) then +if SOUNDS["NAMCO_63701X"] then files { MAME_DIR .. "src/devices/sound/n63701x.cpp", MAME_DIR .. "src/devices/sound/n63701x.h", } end -if (SOUNDS["C140"]~=null) then +if SOUNDS["C140"] then files { MAME_DIR .. "src/devices/sound/c140.cpp", MAME_DIR .. "src/devices/sound/c140.h", } end -if (SOUNDS["C352"]~=null) then +if SOUNDS["C352"] then files { MAME_DIR .. "src/devices/sound/c352.cpp", MAME_DIR .. "src/devices/sound/c352.h", @@ -668,7 +668,7 @@ end --@src/devices/sound/digitalk.h,SOUNDS["DIGITALKER"] = true --------------------------------------------------- -if (SOUNDS["DIGITALKER"]~=null) then +if SOUNDS["DIGITALKER"] then files { MAME_DIR .. "src/devices/sound/digitalk.cpp", MAME_DIR .. "src/devices/sound/digitalk.h", @@ -682,7 +682,7 @@ end --@src/devices/sound/nes_apu.h,SOUNDS["NES_APU"] = true --------------------------------------------------- -if (SOUNDS["NES_APU"]~=null) then +if SOUNDS["NES_APU"] then files { MAME_DIR .. "src/devices/sound/nes_apu.cpp", MAME_DIR .. "src/devices/sound/nes_apu.h", @@ -699,7 +699,7 @@ end --@src/devices/sound/upd7759.h,SOUNDS["UPD7759"] = true --------------------------------------------------- -if (SOUNDS["UPD7759"]~=null) then +if SOUNDS["UPD7759"] then files { MAME_DIR .. "src/devices/sound/upd7759.cpp", MAME_DIR .. "src/devices/sound/upd7759.h", @@ -715,7 +715,7 @@ end --@src/devices/sound/imaadpcm.h,SOUNDS["IMAADPCM"] = true --------------------------------------------------- -if (SOUNDS["IMAADPCM"]~=null) then +if SOUNDS["IMAADPCM"] then files { MAME_DIR .. "src/devices/sound/imaadpcm.cpp", MAME_DIR .. "src/devices/sound/imaadpcm.h", @@ -736,56 +736,56 @@ end --@src/devices/sound/okiadpcm.h,SOUNDS["OKIADPCM"] = true --------------------------------------------------- -if (SOUNDS["OKIM6258"]~=null or SOUNDS["OKIM6295"]~=null or SOUNDS["OKIM6588"]~=null or SOUNDS["OKIM9810"]~=null or SOUNDS["I5000_SND"]~=null or SOUNDS["OKIADPCM"]~=null) then +if SOUNDS["OKIM6258"]~=null or SOUNDS["OKIM6295"]~=null or SOUNDS["OKIM6588"]~=null or SOUNDS["OKIM9810"]~=null or SOUNDS["I5000_SND"]~=null or SOUNDS["OKIADPCM"] then files { MAME_DIR .. "src/devices/sound/okiadpcm.cpp", MAME_DIR .. "src/devices/sound/okiadpcm.h", } end -if (SOUNDS["MSM5205"]~=null or SOUNDS["MSM6585"]~=null) then +if SOUNDS["MSM5205"]~=null or SOUNDS["MSM6585"] then files { MAME_DIR .. "src/devices/sound/msm5205.cpp", MAME_DIR .. "src/devices/sound/msm5205.h", } end -if (SOUNDS["MSM5232"]~=null) then +if SOUNDS["MSM5232"] then files { MAME_DIR .. "src/devices/sound/msm5232.cpp", MAME_DIR .. "src/devices/sound/msm5232.h", } end -if (SOUNDS["OKIM6376"]~=null) then +if SOUNDS["OKIM6376"] then files { MAME_DIR .. "src/devices/sound/okim6376.cpp", MAME_DIR .. "src/devices/sound/okim6376.h", } end -if (SOUNDS["OKIM6295"]~=null) then +if SOUNDS["OKIM6295"] then files { MAME_DIR .. "src/devices/sound/okim6295.cpp", MAME_DIR .. "src/devices/sound/okim6295.h", } end -if (SOUNDS["OKIM6258"]~=null) then +if SOUNDS["OKIM6258"] then files { MAME_DIR .. "src/devices/sound/okim6258.cpp", MAME_DIR .. "src/devices/sound/okim6258.h", } end -if (SOUNDS["OKIM6588"]~=null) then +if SOUNDS["OKIM6588"] then files { MAME_DIR .. "src/devices/sound/okim6588.cpp", MAME_DIR .. "src/devices/sound/okim6588.h", } end -if (SOUNDS["OKIM9810"]~=null) then +if SOUNDS["OKIM9810"] then files { MAME_DIR .. "src/devices/sound/okim9810.cpp", MAME_DIR .. "src/devices/sound/okim9810.h", @@ -799,7 +799,7 @@ end --@src/devices/sound/saa1099.h,SOUNDS["SAA1099"] = true --------------------------------------------------- -if (SOUNDS["SAA1099"]~=null) then +if SOUNDS["SAA1099"] then files { MAME_DIR .. "src/devices/sound/saa1099.cpp", MAME_DIR .. "src/devices/sound/saa1099.h", @@ -813,7 +813,7 @@ end --@src/devices/sound/qs1000.h,SOUNDS["QS1000"] = true --------------------------------------------------- -if (SOUNDS["QS1000"]~=null) then +if SOUNDS["QS1000"] then files { MAME_DIR .. "src/devices/sound/qs1000.cpp", MAME_DIR .. "src/devices/sound/qs1000.h", @@ -827,7 +827,7 @@ end --@src/devices/sound/qsound.h,SOUNDS["QSOUND"] = true --------------------------------------------------- -if (SOUNDS["QSOUND"]~=null) then +if SOUNDS["QSOUND"] then files { MAME_DIR .. "src/devices/sound/qsound.cpp", MAME_DIR .. "src/devices/sound/qsound.h", @@ -844,14 +844,14 @@ end --@src/devices/sound/rf5c400.h,SOUNDS["RF5C400"] = true --------------------------------------------------- -if (SOUNDS["RF5C68"]~=null) then +if SOUNDS["RF5C68"] then files { MAME_DIR .. "src/devices/sound/rf5c68.cpp", MAME_DIR .. "src/devices/sound/rf5c68.h", } end -if (SOUNDS["RF5C400"]~=null) then +if SOUNDS["RF5C400"] then files { MAME_DIR .. "src/devices/sound/rf5c400.cpp", MAME_DIR .. "src/devices/sound/rf5c400.h", @@ -867,14 +867,14 @@ end --@src/devices/sound/aica.h,SOUNDS["AICA"] = true --------------------------------------------------- -if (SOUNDS["SEGAPCM"]~=null) then +if SOUNDS["SEGAPCM"] then files { MAME_DIR .. "src/devices/sound/segapcm.cpp", MAME_DIR .. "src/devices/sound/segapcm.h", } end -if (SOUNDS["SCSP"]~=null) then +if SOUNDS["SCSP"] then files { MAME_DIR .. "src/devices/sound/scsp.cpp", MAME_DIR .. "src/devices/sound/scsp.h", @@ -883,7 +883,7 @@ if (SOUNDS["SCSP"]~=null) then } end -if (SOUNDS["AICA"]~=null) then +if SOUNDS["AICA"] then files { MAME_DIR .. "src/devices/sound/aica.cpp", MAME_DIR .. "src/devices/sound/aica.h", @@ -899,21 +899,21 @@ end --@src/devices/sound/x1_010.h,SOUNDS["X1_010"] = true --------------------------------------------------- -if (SOUNDS["ST0016"]~=null) then +if SOUNDS["ST0016"] then files { MAME_DIR .. "src/devices/sound/st0016.cpp", MAME_DIR .. "src/devices/sound/st0016.h", } end -if (SOUNDS["SETAPCM"]~=null) then +if SOUNDS["SETAPCM"] then files { MAME_DIR .. "src/devices/sound/setapcm.cpp", MAME_DIR .. "src/devices/sound/setapcm.h", } end -if (SOUNDS["X1_010"]~=null) then +if SOUNDS["X1_010"] then files { MAME_DIR .. "src/devices/sound/x1_010.cpp", MAME_DIR .. "src/devices/sound/x1_010.h", @@ -927,7 +927,7 @@ end --@src/devices/sound/mos6581.h,SOUNDS["SID6581"] = true --------------------------------------------------- -if (SOUNDS["SID6581"]~=null or SOUNDS["SID8580"]~=null) then +if SOUNDS["SID6581"]~=null or SOUNDS["SID8580"] then files { MAME_DIR .. "src/devices/sound/mos6581.cpp", MAME_DIR .. "src/devices/sound/mos6581.h", @@ -949,7 +949,7 @@ end --@src/devices/sound/t6w28.h,SOUNDS["T6W28"] = true --------------------------------------------------- -if (SOUNDS["T6W28"]~=null) then +if SOUNDS["T6W28"] then files { MAME_DIR .. "src/devices/sound/t6w28.cpp", MAME_DIR .. "src/devices/sound/t6w28.h", @@ -963,7 +963,7 @@ end --@src/devices/sound/snkwave.h,SOUNDS["SNKWAVE"] = true --------------------------------------------------- -if (SOUNDS["SNKWAVE"]~=null) then +if SOUNDS["SNKWAVE"] then files { MAME_DIR .. "src/devices/sound/snkwave.cpp", MAME_DIR .. "src/devices/sound/snkwave.h", @@ -977,7 +977,7 @@ end --@src/devices/sound/spu.h,SOUNDS["SPU"] = true --------------------------------------------------- -if (SOUNDS["SPU"]~=null) then +if SOUNDS["SPU"] then files { MAME_DIR .. "src/devices/sound/spu.cpp", MAME_DIR .. "src/devices/sound/spu.h", @@ -993,7 +993,7 @@ end --@src/devices/sound/sp0256.h,SOUNDS["SP0256"] = true --------------------------------------------------- -if (SOUNDS["SP0256"]~=null) then +if SOUNDS["SP0256"] then files { MAME_DIR .. "src/devices/sound/sp0256.cpp", MAME_DIR .. "src/devices/sound/sp0256.h", @@ -1007,7 +1007,7 @@ end --@src/devices/sound/sp0250.h,SOUNDS["SP0250"] = true --------------------------------------------------- -if (SOUNDS["SP0250"]~=null) then +if SOUNDS["SP0250"] then files { MAME_DIR .. "src/devices/sound/sp0250.cpp", MAME_DIR .. "src/devices/sound/sp0250.h", @@ -1020,7 +1020,7 @@ end --@src/devices/sound/stt_sa1.h,SOUNDS["STT_SA1"] = true --------------------------------------------------- -if (SOUNDS["STT_SA1"]~=null) then +if SOUNDS["STT_SA1"] then files { MAME_DIR .. "src/devices/sound/stt_sa1.cpp", MAME_DIR .. "src/devices/sound/stt_sa1.h", @@ -1033,7 +1033,7 @@ end --@src/devices/sound/s14001a.h,SOUNDS["S14001A"] = true --------------------------------------------------- -if (SOUNDS["S14001A"]~=null) then +if SOUNDS["S14001A"] then files { MAME_DIR .. "src/devices/sound/s14001a.cpp", MAME_DIR .. "src/devices/sound/s14001a.h", @@ -1047,7 +1047,7 @@ end --@src/devices/sound/sn76477.h,SOUNDS["SN76477"] = true --------------------------------------------------- -if (SOUNDS["SN76477"]~=null) then +if SOUNDS["SN76477"] then files { MAME_DIR .. "src/devices/sound/sn76477.cpp", MAME_DIR .. "src/devices/sound/sn76477.h", @@ -1061,7 +1061,7 @@ end --@src/devices/sound/sn76496.h,SOUNDS["SN76496"] = true --------------------------------------------------- -if (SOUNDS["SN76496"]~=null) then +if SOUNDS["SN76496"] then files { MAME_DIR .. "src/devices/sound/sn76496.cpp", MAME_DIR .. "src/devices/sound/sn76496.h", @@ -1075,7 +1075,7 @@ end --@src/devices/sound/ssi263hle.h,SOUNDS["SSI263HLE"] = true --------------------------------------------------- -if (SOUNDS["SSI263HLE"]~=null) then +if SOUNDS["SSI263HLE"] then files { MAME_DIR .. "src/devices/sound/ssi263hle.cpp", MAME_DIR .. "src/devices/sound/ssi263hle.h", @@ -1089,7 +1089,7 @@ end --@src/devices/sound/tms36xx.h,SOUNDS["TMS36XX"] = true --------------------------------------------------- -if (SOUNDS["TMS36XX"]~=null) then +if SOUNDS["TMS36XX"] then files { MAME_DIR .. "src/devices/sound/tms36xx.cpp", MAME_DIR .. "src/devices/sound/tms36xx.h", @@ -1103,7 +1103,7 @@ end --@src/devices/sound/tms3615.h,SOUNDS["TMS3615"] = true --------------------------------------------------- -if (SOUNDS["TMS3615"]~=null) then +if SOUNDS["TMS3615"] then files { MAME_DIR .. "src/devices/sound/tms3615.cpp", MAME_DIR .. "src/devices/sound/tms3615.h", @@ -1117,7 +1117,7 @@ end --@src/devices/sound/tms3631.h,SOUNDS["TMS3631"] = true --------------------------------------------------- -if (SOUNDS["TMS3631"]~=null) then +if SOUNDS["TMS3631"] then files { MAME_DIR .. "src/devices/sound/tms3631.cpp", MAME_DIR .. "src/devices/sound/tms3631.h", @@ -1129,7 +1129,7 @@ end --@src/devices/sound/tms5110.h,SOUNDS["TMS5110"] = true --------------------------------------------------- -if (SOUNDS["TMS5110"]~=null) then +if SOUNDS["TMS5110"] then files { MAME_DIR .. "src/devices/sound/tms5110.cpp", MAME_DIR .. "src/devices/sound/tms5110.h", @@ -1141,7 +1141,7 @@ end -- Texas Instruments TMS5200-series speech synthesizers --@src/devices/sound/tms5220.h,SOUNDS["TMS5220"] = true --------------------------------------------------- -if (SOUNDS["TMS5220"]~=null) then +if SOUNDS["TMS5220"] then files { MAME_DIR .. "src/devices/sound/tms5220.cpp", MAME_DIR .. "src/devices/sound/tms5220.h", @@ -1155,7 +1155,7 @@ end --@src/devices/sound/t6721a.h,SOUNDS["T6721A"] = true --------------------------------------------------- -if (SOUNDS["T6721A"]~=null) then +if SOUNDS["T6721A"] then files { MAME_DIR .. "src/devices/sound/t6721a.cpp", MAME_DIR .. "src/devices/sound/t6721a.h", @@ -1169,7 +1169,7 @@ end --@src/devices/sound/tc8830f.h,SOUNDS["TC8830F"] = true --------------------------------------------------- -if (SOUNDS["TC8830F"]~=null) then +if SOUNDS["TC8830F"] then files { MAME_DIR .. "src/devices/sound/tc8830f.cpp", MAME_DIR .. "src/devices/sound/tc8830f.h", @@ -1182,7 +1182,7 @@ end --@src/devices/sound/upd7752.h,SOUNDS["UPD7752"] = true --------------------------------------------------- -if (SOUNDS["UPD7752"]~=null) then +if SOUNDS["UPD7752"] then files { MAME_DIR .. "src/devices/sound/upd7752.cpp", MAME_DIR .. "src/devices/sound/upd7752.h", @@ -1194,7 +1194,7 @@ end --@src/devices/sound/va_eg.h,SOUNDS["VA_EG"] = true -------------------------------------------------- -if (SOUNDS["VA_EG"]~=null) then +if SOUNDS["VA_EG"] then files { MAME_DIR .. "src/devices/sound/va_eg.cpp", MAME_DIR .. "src/devices/sound/va_eg.h", @@ -1206,7 +1206,7 @@ end --@src/devices/sound/va_vca.h,SOUNDS["VA_VCA"] = true -------------------------------------------------- -if (SOUNDS["VA_VCA"]~=null) then +if SOUNDS["VA_VCA"] then files { MAME_DIR .. "src/devices/sound/va_vca.cpp", MAME_DIR .. "src/devices/sound/va_vca.h", @@ -1218,7 +1218,7 @@ end --@src/devices/sound/va_vcf.h,SOUNDS["VA_VCF"] = true -------------------------------------------------- -if (SOUNDS["VA_VCF"]~=null) then +if SOUNDS["VA_VCF"] then files { MAME_DIR .. "src/devices/sound/va_vcf.cpp", MAME_DIR .. "src/devices/sound/va_vcf.h", @@ -1230,7 +1230,7 @@ end --@src/devices/sound/vlm5030.h,SOUNDS["VLM5030"] = true --------------------------------------------------- -if (SOUNDS["VLM5030"]~=null) then +if SOUNDS["VLM5030"] then files { MAME_DIR .. "src/devices/sound/vlm5030.cpp", MAME_DIR .. "src/devices/sound/vlm5030.h", @@ -1244,7 +1244,7 @@ end --@src/devices/sound/votrax.h,SOUNDS["VOTRAX_SC01A"] = true --------------------------------------------------- -if (SOUNDS["VOTRAX_SC01"]~=null or SOUNDS["VOTRAX_SC01A"]~=null) then +if SOUNDS["VOTRAX_SC01"]~=null or SOUNDS["VOTRAX_SC01A"] then files { MAME_DIR .. "src/devices/sound/votrax.cpp", MAME_DIR .. "src/devices/sound/votrax.h", @@ -1258,7 +1258,7 @@ end --@src/devices/sound/vrender0.h,SOUNDS["VRENDER0"] = true --------------------------------------------------- -if (SOUNDS["VRENDER0"]~=null) then +if SOUNDS["VRENDER0"] then files { MAME_DIR .. "src/devices/sound/vrender0.cpp", MAME_DIR .. "src/devices/sound/vrender0.h", @@ -1286,35 +1286,35 @@ end --@src/devices/sound/ymopl.h,SOUNDS["Y8950"] = true --------------------------------------------------- -if (SOUNDS["YM2154"]~=null) then +if SOUNDS["YM2154"] then files { MAME_DIR .. "src/devices/sound/ym2154.cpp", MAME_DIR .. "src/devices/sound/ym2154.h", } end -if (SOUNDS["YM2151"]~=null or SOUNDS["YM2164"]~=null) then +if SOUNDS["YM2151"]~=null or SOUNDS["YM2164"] then files { MAME_DIR .. "src/devices/sound/ymopm.cpp", MAME_DIR .. "src/devices/sound/ymopm.h", } end -if (SOUNDS["YM2414"]~=null) then +if SOUNDS["YM2414"] then files { MAME_DIR .. "src/devices/sound/ymopz.cpp", MAME_DIR .. "src/devices/sound/ymopz.h", } end -if (SOUNDS["YM3806"]~=null) then +if SOUNDS["YM3806"] then files { MAME_DIR .. "src/devices/sound/ymopq.cpp", MAME_DIR .. "src/devices/sound/ymopq.h", } end -if (SOUNDS["YM2203"]~=null or SOUNDS["YM2608"]~=null or SOUNDS["YM2610"]~=null or SOUNDS["YM2610B"]~=null or SOUNDS["YM2612"]~=null or SOUNDS["YM3438"]~=null) then +if SOUNDS["YM2203"]~=null or SOUNDS["YM2608"]~=null or SOUNDS["YM2610"]~=null or SOUNDS["YM2610B"]~=null or SOUNDS["YM2612"]~=null or SOUNDS["YM3438"] then files { MAME_DIR .. "src/devices/sound/ay8910.cpp", MAME_DIR .. "src/devices/sound/ay8910.h", @@ -1323,14 +1323,14 @@ if (SOUNDS["YM2203"]~=null or SOUNDS["YM2608"]~=null or SOUNDS["YM2610"]~=null o } end -if (SOUNDS["YM3526"]~=null or SOUNDS["Y8950"]~=null or SOUNDS["YM3812"]~=null or SOUNDS["YMF262"]~=null or SOUNDS["YMF278B"]~=null or SOUNDS["YM2413"]~=null or SOUNDS["YM2423"]~=null or SOUNDS["YMF281"]~=null or SOUNDS["DS1001"]~=null) then +if SOUNDS["YM3526"]~=null or SOUNDS["Y8950"]~=null or SOUNDS["YM3812"]~=null or SOUNDS["YMF262"]~=null or SOUNDS["YMF278B"]~=null or SOUNDS["YM2413"]~=null or SOUNDS["YM2423"]~=null or SOUNDS["YMF281"]~=null or SOUNDS["DS1001"] then files { MAME_DIR .. "src/devices/sound/ymopl.cpp", MAME_DIR .. "src/devices/sound/ymopl.h", } end -if (SOUNDS["YMF271"]~=null) then +if SOUNDS["YMF271"] then files { MAME_DIR .. "src/devices/sound/ymf271.cpp", MAME_DIR .. "src/devices/sound/ymf271.h", @@ -1344,7 +1344,7 @@ end --@src/devices/sound/ymz280b.h,SOUNDS["YMZ280B"] = true --------------------------------------------------- -if (SOUNDS["YMZ280B"]~=null) then +if SOUNDS["YMZ280B"] then files { MAME_DIR .. "src/devices/sound/ymz280b.cpp", MAME_DIR .. "src/devices/sound/ymz280b.h", @@ -1356,7 +1356,7 @@ end --@src/devices/sound/ymz770.h,SOUNDS["YMZ770"] = true --------------------------------------------------- -if (SOUNDS["YMZ770"]~=null) then +if SOUNDS["YMZ770"] then files { MAME_DIR .. "src/devices/sound/ymz770.cpp", MAME_DIR .. "src/devices/sound/ymz770.h", @@ -1369,21 +1369,21 @@ end --@src/devices/sound/multipcm.h,SOUNDS["MULTIPCM"] = true --------------------------------------------------- -if (SOUNDS["GEW7"]~=null or SOUNDS["MULTIPCM"]~=null) then +if SOUNDS["GEW7"]~=null or SOUNDS["MULTIPCM"] then files { MAME_DIR .. "src/devices/sound/gew.cpp", MAME_DIR .. "src/devices/sound/gew.h", } end -if (SOUNDS["GEW7"]~=null) then +if SOUNDS["GEW7"] then files { MAME_DIR .. "src/devices/sound/gew7.cpp", MAME_DIR .. "src/devices/sound/gew7.h", } end -if (SOUNDS["MULTIPCM"]~=null) then +if SOUNDS["MULTIPCM"] then files { MAME_DIR .. "src/devices/sound/multipcm.cpp", MAME_DIR .. "src/devices/sound/multipcm.h", @@ -1395,7 +1395,7 @@ end --@src/devices/sound/mp3_audio.h,SOUNDS["MP3_AUDIO"] = true --------------------------------------------------- -if (SOUNDS["MP3_AUDIO"]~=null) then +if SOUNDS["MP3_AUDIO"] then files { MAME_DIR .. "src/devices/sound/mp3_audio.cpp", MAME_DIR .. "src/devices/sound/mp3_audio.h", @@ -1407,7 +1407,7 @@ end --@src/devices/sound/mpeg_audio.h,SOUNDS["MPEG_AUDIO"] = true --------------------------------------------------- -if (SOUNDS["MPEG_AUDIO"]~=null) then +if SOUNDS["MPEG_AUDIO"] then files { MAME_DIR .. "src/devices/sound/mpeg_audio.cpp", MAME_DIR .. "src/devices/sound/mpeg_audio.h", @@ -1419,7 +1419,7 @@ end --@src/devices/sound/zsg2.h,SOUNDS["ZSG2"] = true --------------------------------------------------- -if (SOUNDS["ZSG2"]~=null) then +if SOUNDS["ZSG2"] then files { MAME_DIR .. "src/devices/sound/zsg2.cpp", MAME_DIR .. "src/devices/sound/zsg2.h", @@ -1431,7 +1431,7 @@ end --@src/devices/sound/vrc6.h,SOUNDS["VRC6"] = true --------------------------------------------------- -if (SOUNDS["VRC6"]~=null) then +if SOUNDS["VRC6"] then files { MAME_DIR .. "src/devices/sound/vrc6.cpp", MAME_DIR .. "src/devices/sound/vrc6.h", @@ -1443,7 +1443,7 @@ end --@src/devices/sound/ad1848.h,SOUNDS["AD1848"] = true --------------------------------------------------- -if (SOUNDS["AD1848"]~=null) then +if SOUNDS["AD1848"] then files { MAME_DIR .. "src/devices/sound/ad1848.cpp", MAME_DIR .. "src/devices/sound/ad1848.h", @@ -1455,7 +1455,7 @@ end --@src/devices/sound/gb.h,SOUNDS["GB_SOUND"] = true --------------------------------------------------- -if (SOUNDS["GB_SOUND"]~=null) then +if SOUNDS["GB_SOUND"] then files { MAME_DIR .. "src/devices/sound/gb.cpp", MAME_DIR .. "src/devices/sound/gb.h", @@ -1467,7 +1467,7 @@ end --@src/devices/sound/pcd3311.h,SOUNDS["PCD3311"] = true --------------------------------------------------- -if (SOUNDS["PCD3311"]~=null) then +if SOUNDS["PCD3311"] then files { MAME_DIR .. "src/devices/sound/pcd3311.cpp", MAME_DIR .. "src/devices/sound/pcd3311.h", @@ -1478,7 +1478,7 @@ end -- DAC-76 COMDAC --@src/devices/sound/dac76.h,SOUNDS["DAC76"] = true --------------------------------------------------- -if (SOUNDS["DAC76"]~=null) then +if SOUNDS["DAC76"] then files { MAME_DIR .. "src/devices/sound/dac76.cpp", MAME_DIR .. "src/devices/sound/dac76.h", @@ -1490,7 +1490,7 @@ end --@src/devices/sound/mm5837.h,SOUNDS["MM5837"] = true --------------------------------------------------- -if (SOUNDS["MM5837"]~=null) then +if SOUNDS["MM5837"] then files { MAME_DIR .. "src/devices/sound/mm5837.cpp", MAME_DIR .. "src/devices/sound/mm5837.h", @@ -1502,7 +1502,7 @@ end --@src/devices/sound/ta7630.h,SOUNDS["TA7630"] = true --------------------------------------------------- -if (SOUNDS["TA7630"]~=null) then +if SOUNDS["TA7630"] then files { MAME_DIR .. "src/devices/sound/ta7630.cpp", MAME_DIR .. "src/devices/sound/ta7630.h", @@ -1514,7 +1514,7 @@ end --@src/devices/sound/lc7535.h,SOUNDS["LC7535"] = true --------------------------------------------------- -if (SOUNDS["LC7535"]~=null) then +if SOUNDS["LC7535"] then files { MAME_DIR .. "src/devices/sound/lc7535.cpp", MAME_DIR .. "src/devices/sound/lc7535.h", @@ -1526,7 +1526,7 @@ end --@src/devices/sound/lc78836m.h,SOUNDS["LC78836M"] = true --------------------------------------------------- -if (SOUNDS["LC78836M"]~=null) then +if SOUNDS["LC78836M"] then files { MAME_DIR .. "src/devices/sound/lc78836m.cpp", MAME_DIR .. "src/devices/sound/lc78836m.h", @@ -1538,7 +1538,7 @@ end --@src/devices/sound/lc82310.h,SOUNDS["LC82310"] = true --------------------------------------------------- -if (SOUNDS["LC82310"]~=null) then +if SOUNDS["LC82310"] then files { MAME_DIR .. "src/devices/sound/lc82310.cpp", MAME_DIR .. "src/devices/sound/lc82310.h", @@ -1550,7 +1550,7 @@ end --@src/devices/sound/upd931.h,SOUNDS["UPD931"] = true --------------------------------------------------- -if (SOUNDS["UPD931"]~=null) then +if SOUNDS["UPD931"] then files { MAME_DIR .. "src/devices/sound/upd931.cpp", MAME_DIR .. "src/devices/sound/upd931.h", @@ -1562,7 +1562,7 @@ end --@src/devices/sound/upd933.h,SOUNDS["UPD933"] = true --------------------------------------------------- -if (SOUNDS["UPD933"]~=null) then +if SOUNDS["UPD933"] then files { MAME_DIR .. "src/devices/sound/upd933.cpp", MAME_DIR .. "src/devices/sound/upd933.h", @@ -1574,7 +1574,7 @@ end --@src/devices/sound/upd934g.h,SOUNDS["UPD934G"] = true --------------------------------------------------- -if (SOUNDS["UPD934G"]~=null) then +if SOUNDS["UPD934G"] then files { MAME_DIR .. "src/devices/sound/upd934g.cpp", MAME_DIR .. "src/devices/sound/upd934g.h", @@ -1586,7 +1586,7 @@ end --@src/devices/sound/iopspu.h,SOUNDS["IOPSPU"] = true --------------------------------------------------- -if (SOUNDS["IOPSPU"]~=null) then +if SOUNDS["IOPSPU"] then files { MAME_DIR .. "src/devices/sound/iopspu.cpp", MAME_DIR .. "src/devices/sound/iopspu.h", @@ -1598,7 +1598,7 @@ end --@src/devices/sound/swp00.h,SOUNDS["SWP00"] = true --------------------------------------------------- -if (SOUNDS["SWP00"]~=null) then +if SOUNDS["SWP00"] then files { MAME_DIR .. "src/devices/sound/swp00.cpp", MAME_DIR .. "src/devices/sound/swp00.h", @@ -1610,7 +1610,7 @@ end --@src/devices/sound/swp20.h,SOUNDS["SWP20"] = true --------------------------------------------------- -if (SOUNDS["SWP20"]~=null) then +if SOUNDS["SWP20"] then files { MAME_DIR .. "src/devices/sound/swp20.cpp", MAME_DIR .. "src/devices/sound/swp20.h", @@ -1622,7 +1622,7 @@ end --@src/devices/sound/swx00.h,SOUNDS["SWX00"] = true --------------------------------------------------- -if (SOUNDS["SWX00"]~=null) then +if SOUNDS["SWX00"] then files { MAME_DIR .. "src/devices/sound/swx00.cpp", MAME_DIR .. "src/devices/sound/swx00.h", @@ -1634,7 +1634,7 @@ end --@src/devices/sound/meg.h,SOUNDS["MEG"] = true --------------------------------------------------- -if (SOUNDS["MEG"]~=null) then +if SOUNDS["MEG"] then files { MAME_DIR .. "src/devices/sound/meg.cpp", MAME_DIR .. "src/devices/sound/meg.h", @@ -1646,7 +1646,7 @@ end --@src/devices/sound/xt446.h,SOUNDS["XT446"] = true --------------------------------------------------- -if (SOUNDS["XT446"]~=null) then +if SOUNDS["XT446"] then files { MAME_DIR .. "src/devices/sound/xt446.cpp", MAME_DIR .. "src/devices/sound/xt446.h", @@ -1658,7 +1658,7 @@ end --@src/devices/sound/roland_gp.h,SOUNDS["ROLANDGP"] = true --------------------------------------------------- -if (SOUNDS["ROLANDGP"]~=null) then +if SOUNDS["ROLANDGP"] then files { MAME_DIR .. "src/devices/sound/roland_gp.cpp", MAME_DIR .. "src/devices/sound/roland_gp.h", @@ -1670,7 +1670,7 @@ end --@src/devices/sound/roland_lp.h,SOUNDS["ROLANDLP"] = true --------------------------------------------------- -if (SOUNDS["ROLANDLP"]~=null) then +if SOUNDS["ROLANDLP"] then files { MAME_DIR .. "src/devices/sound/roland_lp.cpp", MAME_DIR .. "src/devices/sound/roland_lp.h", @@ -1682,7 +1682,7 @@ end --@src/devices/sound/vgm_visualizer.h,SOUNDS["VGMVIZ"] = true --------------------------------------------------- -if (SOUNDS["VGMVIZ"]~=null) then +if SOUNDS["VGMVIZ"] then files { MAME_DIR .. "src/devices/sound/vgm_visualizer.cpp", MAME_DIR .. "src/devices/sound/vgm_visualizer.h", @@ -1694,7 +1694,7 @@ end --@src/devices/sound/s_dsp.h,SOUNDS["S_DSP"] = true --------------------------------------------------- -if (SOUNDS["S_DSP"]~=null) then +if SOUNDS["S_DSP"] then files { MAME_DIR .. "src/devices/sound/s_dsp.cpp", MAME_DIR .. "src/devices/sound/s_dsp.h", @@ -1706,7 +1706,7 @@ end --@src/devices/sound/ks0164.h,SOUNDS["KS0164"] = true --------------------------------------------------- -if (SOUNDS["KS0164"]~=null) then +if SOUNDS["KS0164"] then files { MAME_DIR .. "src/devices/sound/ks0164.cpp", MAME_DIR .. "src/devices/sound/ks0164.h", @@ -1718,7 +1718,7 @@ end --@src/devices/sound/rp2c33_snd.h,SOUNDS["RP2C33_SOUND"] = true --------------------------------------------------- -if (SOUNDS["RP2C33_SOUND"]~=null) then +if SOUNDS["RP2C33_SOUND"] then files { MAME_DIR .. "src/devices/sound/rp2c33_snd.cpp", MAME_DIR .. "src/devices/sound/rp2c33_snd.h", @@ -1730,7 +1730,7 @@ end --@src/devices/sound/tt5665.h,SOUNDS["TT5665"] = true --------------------------------------------------- -if (SOUNDS["TT5665"]~=null) then +if SOUNDS["TT5665"] then files { MAME_DIR .. "src/devices/sound/tt5665.cpp", MAME_DIR .. "src/devices/sound/tt5665.h", @@ -1742,7 +1742,7 @@ end --@src/devices/sound/uda1344.h,SOUNDS["UDA1344"] = true --------------------------------------------------- -if (SOUNDS["UDA1344"]~=null) then +if SOUNDS["UDA1344"] then files { MAME_DIR .. "src/devices/sound/uda1344.cpp", MAME_DIR .. "src/devices/sound/uda1344.h", @@ -1754,7 +1754,7 @@ end --@src/devices/sound/lynx.h,SOUNDS["LYNX"] = true --------------------------------------------------- -if (SOUNDS["LYNX"]~=null) then +if SOUNDS["LYNX"] then files { MAME_DIR .. "src/devices/sound/lynx.cpp", MAME_DIR .. "src/devices/sound/lynx.h", @@ -1766,7 +1766,7 @@ end --@src/devices/sound/nn71003f.h,SOUNDS["NN71003F"] = true --------------------------------------------------- -if (SOUNDS["NN71003F"]~=null) then +if SOUNDS["NN71003F"] then files { MAME_DIR .. "src/devices/sound/nn71003f.cpp", MAME_DIR .. "src/devices/sound/nn71003f.h", @@ -1778,7 +1778,7 @@ end --@src/devices/sound/ap2010pcm.h,SOUNDS["AP2010"] = true --------------------------------------------------- -if (SOUNDS["AP2010"]~=null) then +if SOUNDS["AP2010"] then files { MAME_DIR .. "src/devices/sound/ap2010pcm.cpp", MAME_DIR .. "src/devices/sound/ap2010pcm.h", @@ -1790,7 +1790,7 @@ end --@src/devices/sound/cf61909.h,SOUNDS["CF61909"] = true --------------------------------------------------- -if (SOUNDS["CF61909"]~=null) then +if SOUNDS["CF61909"] then files { MAME_DIR .. "src/devices/sound/cf61909.cpp", MAME_DIR .. "src/devices/sound/cf61909.h", @@ -1802,7 +1802,7 @@ end --@src/devices/sound/upd65043gfu01.h,SOUNDS["UPD65043GFU01"] = true --------------------------------------------------- -if (SOUNDS["UPD65043GFU01"]~=null) then +if SOUNDS["UPD65043GFU01"] then files { MAME_DIR .. "src/devices/sound/upd65043gfu01.cpp", MAME_DIR .. "src/devices/sound/upd65043gfu01.h", @@ -1814,7 +1814,7 @@ end --@src/devices/sound/gt155.h,SOUNDS["GT155"] = true --------------------------------------------------- -if (SOUNDS["GT155"]~=null) then +if SOUNDS["GT155"] then files { MAME_DIR .. "src/devices/sound/gt155.cpp", MAME_DIR .. "src/devices/sound/gt155.h", @@ -1826,7 +1826,7 @@ end --@src/devices/sound/mmc5.h,SOUNDS["MMC5"] = true --------------------------------------------------- -if (SOUNDS["MMC5"]~=null) then +if SOUNDS["MMC5"] then files { MAME_DIR .. "src/devices/sound/mmc5.cpp", MAME_DIR .. "src/devices/sound/mmc5.h", @@ -1838,7 +1838,7 @@ end --@src/devices/sound/adc.h,SOUNDS["ADC"] = true --------------------------------------------------- -if (SOUNDS["ADC"]~=null) then +if SOUNDS["ADC"] then files { MAME_DIR .. "src/devices/sound/adc.cpp", MAME_DIR .. "src/devices/sound/adc.h", @@ -1850,7 +1850,7 @@ end --@src/devices/sound/fz_pcm.h,SOUNDS["FZ_PCM"] = true --------------------------------------------------- -if (SOUNDS["FZ_PCM"]~=null) then +if SOUNDS["FZ_PCM"] then files { MAME_DIR .. "src/devices/sound/fz_pcm.cpp", MAME_DIR .. "src/devices/sound/fz_pcm.h", |
