summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
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
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')
-rw-r--r--scripts/src/bus.lua6423
-rw-r--r--scripts/src/machine.lua941
-rw-r--r--scripts/src/sound.lua302
-rw-r--r--scripts/src/video.lua756
4 files changed, 4246 insertions, 4176 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index 9b35a3917bd..105751f6123 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -9,12 +9,251 @@
--
---------------------------------------------------------------------------
+
+---------------------------------------------------
+--
+--@src/devices/bus/a1bus/a1bus.h,BUSES["A1BUS"] = true
+---------------------------------------------------
+
+if BUSES["A1BUS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/a1bus/a1bus.cpp",
+ MAME_DIR .. "src/devices/bus/a1bus/a1bus.h",
+ MAME_DIR .. "src/devices/bus/a1bus/a1cassette.cpp",
+ MAME_DIR .. "src/devices/bus/a1bus/a1cassette.h",
+ MAME_DIR .. "src/devices/bus/a1bus/a1cffa.cpp",
+ MAME_DIR .. "src/devices/bus/a1bus/a1cffa.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/a2bus/a2bus.h,BUSES["A2BUS"] = true
+---------------------------------------------------
+
+if BUSES["A2BUS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/a2bus/a2bus.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2bus.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2eauxslot.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2eauxslot.h",
+ MAME_DIR .. "src/devices/bus/a2bus/4play.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/4play.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2alfam2.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2alfam2.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2applicard.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2applicard.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2arcadebd.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2arcadebd.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2cffa.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2cffa.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2corvus.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2corvus.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2diskiing.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2diskiing.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2dx1.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2dx1.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2echoii.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2echoii.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2eext80col.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2eext80col.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2eramworks3.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2eramworks3.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2estd80col.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2estd80col.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2hsscsi.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2hsscsi.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2ieee488.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2ieee488.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2iwm.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2iwm.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2mcms.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2mcms.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2memexp.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2memexp.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2midi.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2midi.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2mockingboard.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2mockingboard.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2parprn.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2parprn.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2pic.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2pic.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2sam.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2sam.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2scsi.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2scsi.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2sd.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2sd.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2softcard.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2softcard.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2ssc.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2ssc.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2superdrive.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2superdrive.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2swyft.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2swyft.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2themill.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2themill.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2thunderclock.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2thunderclock.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2ultraterm.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2ultraterm.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2videoterm.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2videoterm.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2vulcan.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2vulcan.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2wico_trackball.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2wico_trackball.h",
+ MAME_DIR .. "src/devices/bus/a2bus/a2zipdrive.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/a2zipdrive.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ace2x00.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ace2x00.h",
+ MAME_DIR .. "src/devices/bus/a2bus/agat_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/agat_fdc.h",
+ MAME_DIR .. "src/devices/bus/a2bus/agat7langcard.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/agat7langcard.h",
+ MAME_DIR .. "src/devices/bus/a2bus/agat7ports.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/agat7ports.h",
+ MAME_DIR .. "src/devices/bus/a2bus/agat7ram.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/agat7ram.h",
+ MAME_DIR .. "src/devices/bus/a2bus/agat840k_hle.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/agat840k_hle.h",
+ MAME_DIR .. "src/devices/bus/a2bus/booti.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/booti.h",
+ MAME_DIR .. "src/devices/bus/a2bus/byte8251.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/byte8251.h",
+ MAME_DIR .. "src/devices/bus/a2bus/cards.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/cards.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ccs7710.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ccs7710.h",
+ MAME_DIR .. "src/devices/bus/a2bus/cmsscsi.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/cmsscsi.h",
+ MAME_DIR .. "src/devices/bus/a2bus/computereyes2.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/computereyes2.h",
+ MAME_DIR .. "src/devices/bus/a2bus/corvfdc01.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/corvfdc01.h",
+ MAME_DIR .. "src/devices/bus/a2bus/corvfdc02.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/corvfdc02.h",
+ MAME_DIR .. "src/devices/bus/a2bus/excel9.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/excel9.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ezcgi.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ezcgi.h",
+ MAME_DIR .. "src/devices/bus/a2bus/grafex.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/grafex.h",
+ MAME_DIR .. "src/devices/bus/a2bus/grappler.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/grappler.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ibsap2.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ibsap2.h",
+ MAME_DIR .. "src/devices/bus/a2bus/lancegs.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/lancegs.h",
+ MAME_DIR .. "src/devices/bus/a2bus/laser128.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/laser128.h",
+ MAME_DIR .. "src/devices/bus/a2bus/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/mouse.h",
+ MAME_DIR .. "src/devices/bus/a2bus/nippelclock.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/nippelclock.h",
+ MAME_DIR .. "src/devices/bus/a2bus/noisemaker.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/noisemaker.h",
+ MAME_DIR .. "src/devices/bus/a2bus/pc_xporter.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/pc_xporter.h",
+ MAME_DIR .. "src/devices/bus/a2bus/prodosromdrive.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/prodosromdrive.h",
+ MAME_DIR .. "src/devices/bus/a2bus/q68.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/q68.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ramcard128k.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ramcard128k.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ramcard16k.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ramcard16k.h",
+ MAME_DIR .. "src/devices/bus/a2bus/romcard.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/romcard.h",
+ MAME_DIR .. "src/devices/bus/a2bus/sider.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/sider.h",
+ MAME_DIR .. "src/devices/bus/a2bus/snesmax.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/snesmax.h",
+ MAME_DIR .. "src/devices/bus/a2bus/softcard3.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/softcard3.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ssbapple.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ssbapple.h",
+ MAME_DIR .. "src/devices/bus/a2bus/ssprite.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/ssprite.h",
+ MAME_DIR .. "src/devices/bus/a2bus/suprterminal.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/suprterminal.h",
+ MAME_DIR .. "src/devices/bus/a2bus/timemasterho.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/timemasterho.h",
+ MAME_DIR .. "src/devices/bus/a2bus/titan3plus2.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/titan3plus2.h",
+ MAME_DIR .. "src/devices/bus/a2bus/transwarp.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/transwarp.h",
+ MAME_DIR .. "src/devices/bus/a2bus/uniprint.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/uniprint.h",
+ MAME_DIR .. "src/devices/bus/a2bus/uthernet.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/uthernet.h",
+ MAME_DIR .. "src/devices/bus/a2bus/vistaa800.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/vistaa800.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/a2gameio/gameio.h,BUSES["A2GAMEIO"] = true
+---------------------------------------------------
+
+if BUSES["A2GAMEIO"] then
+ files {
+ MAME_DIR .. "src/devices/bus/a2gameio/brightpen.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/brightpen.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/computereyes.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/computereyes.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/gameio.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/gameio.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/joystick.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/joystick.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/joyport.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/joyport.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/joyport_paddles.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/joyport_paddles.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/paddles.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/paddles.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/gizmo.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/gizmo.h",
+ MAME_DIR .. "src/devices/bus/a2gameio/wico_joystick.cpp",
+ MAME_DIR .. "src/devices/bus/a2gameio/wico_joystick.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/a2kbd/a2kbd.h,BUSES["A2KBD"] = true
+---------------------------------------------------
+
+if BUSES["A2KBD"] then
+ files {
+ MAME_DIR .. "src/devices/bus/a2kbd/a2kbd.cpp",
+ MAME_DIR .. "src/devices/bus/a2kbd/a2kbd.h",
+ MAME_DIR .. "src/devices/bus/a2kbd/am100kbd.cpp",
+ MAME_DIR .. "src/devices/bus/a2kbd/am100kbd.h",
+ MAME_DIR .. "src/devices/bus/a2kbd/ivelultrkb.cpp",
+ MAME_DIR .. "src/devices/bus/a2kbd/ivelultrkb.h",
+ MAME_DIR .. "src/devices/bus/a2kbd/kb200.cpp",
+ MAME_DIR .. "src/devices/bus/a2kbd/kb200.h",
+ MAME_DIR .. "src/devices/bus/a2kbd/nkbd.cpp",
+ MAME_DIR .. "src/devices/bus/a2kbd/nkbd.h",
+ MAME_DIR .. "src/devices/bus/a2kbd/tk10.cpp",
+ MAME_DIR .. "src/devices/bus/a2kbd/tk10.h",
+ MAME_DIR .. "src/devices/bus/a2kbd/videnh2.cpp",
+ MAME_DIR .. "src/devices/bus/a2kbd/videnh2.h",
+ }
+end
+
+
-------------------------------------------------
--
--@src/devices/bus/a7800/a78_slot.h,BUSES["A7800"] = true
---------------------------------------------------
-if (BUSES["A7800"]~=null) then
+if BUSES["A7800"] then
files {
MAME_DIR .. "src/devices/bus/a7800/a78_slot.cpp",
MAME_DIR .. "src/devices/bus/a7800/a78_slot.h",
@@ -36,7 +275,7 @@ end
--@src/devices/bus/a800/a800_slot.h,BUSES["A800"] = true
---------------------------------------------------
-if (BUSES["A800"]~=null) then
+if BUSES["A800"] then
files {
MAME_DIR .. "src/devices/bus/a800/a8sio.cpp",
MAME_DIR .. "src/devices/bus/a800/a8sio.h",
@@ -91,7 +330,7 @@ end
--@src/devices/bus/abcbus/abcbus.h,BUSES["ABCBUS"] = true
---------------------------------------------------
-if (BUSES["ABCBUS"]~=null) then
+if BUSES["ABCBUS"] then
files {
MAME_DIR .. "src/devices/bus/abcbus/abcbus.cpp",
MAME_DIR .. "src/devices/bus/abcbus/abcbus.h",
@@ -135,10 +374,30 @@ end
---------------------------------------------------
--
+--@src/devices/bus/abckb/abckb.h,BUSES["ABCKB"] = true
+---------------------------------------------------
+if BUSES["ABCKB"] then
+ files {
+ MAME_DIR .. "src/devices/bus/abckb/abckb.cpp",
+ MAME_DIR .. "src/devices/bus/abckb/abckb.h",
+ MAME_DIR .. "src/devices/bus/abckb/abc77.cpp",
+ MAME_DIR .. "src/devices/bus/abckb/abc77.h",
+ MAME_DIR .. "src/devices/bus/abckb/abc99.cpp",
+ MAME_DIR .. "src/devices/bus/abckb/abc99.h",
+ MAME_DIR .. "src/devices/bus/abckb/abc800kb.cpp",
+ MAME_DIR .. "src/devices/bus/abckb/abc800kb.h",
+ MAME_DIR .. "src/devices/bus/abckb/r8.cpp",
+ MAME_DIR .. "src/devices/bus/abckb/r8.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/acorn/bus.h,BUSES["ACORN"] = true
---------------------------------------------------
-if (BUSES["ACORN"]~=null) then
+if BUSES["ACORN"] then
files {
MAME_DIR .. "src/devices/bus/acorn/bus.cpp",
MAME_DIR .. "src/devices/bus/acorn/bus.h",
@@ -201,7 +460,7 @@ end
--@src/devices/bus/adam/exp.h,BUSES["ADAM"] = true
---------------------------------------------------
-if (BUSES["ADAM"]~=null) then
+if BUSES["ADAM"] then
files {
MAME_DIR .. "src/devices/bus/adam/exp.cpp",
MAME_DIR .. "src/devices/bus/adam/exp.h",
@@ -220,7 +479,7 @@ end
--@src/devices/bus/adamnet/adamnet.h,BUSES["ADAMNET"] = true
---------------------------------------------------
-if (BUSES["ADAMNET"]~=null) then
+if BUSES["ADAMNET"] then
files {
MAME_DIR .. "src/devices/bus/adamnet/adamnet.cpp",
MAME_DIR .. "src/devices/bus/adamnet/adamnet.h",
@@ -242,7 +501,7 @@ end
--@src/devices/bus/adb/adb.h,BUSES["ADB"] = true
---------------------------------------------------
-if (BUSES["ADB"]~=null) then
+if BUSES["ADB"] then
files {
MAME_DIR .. "src/devices/bus/adb/adb.cpp",
MAME_DIR .. "src/devices/bus/adb/adb.h",
@@ -255,12 +514,94 @@ if (BUSES["ADB"]~=null) then
}
end
+
+---------------------------------------------------
+--
+--@src/devices/bus/amiga/cpuslot/cpuslot.h,BUSES["AMIGA_CPUSLOT"] = true
+---------------------------------------------------
+
+if BUSES["AMIGA_CPUSLOT"] then
+ files {
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/cpuslot.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/cpuslot.h",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/cards.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/cards.h",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/a570.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/a570.h",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/a590.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/a590.h",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/action_replay.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/action_replay.h",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/megamix500.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/cpuslot/megamix500.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/amiga/keyboard/keyboard.h,BUSES["AMIGA_KEYBOARD"] = true
+---------------------------------------------------
+
+if BUSES["AMIGA_KEYBOARD"] then
+ files {
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/keyboard.h",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/matrix.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/matrix.h",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/a1200.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/a1200.h",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/a2000.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/a2000.h",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/mitsumi.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/keyboard/mitsumi.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/amiga/zorro/zorro.h,BUSES["AMIGA_ZORRO"] = true
+---------------------------------------------------
+
+if BUSES["AMIGA_ZORRO"] then
+ files {
+ MAME_DIR .. "src/devices/bus/amiga/zorro/zorro.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/zorro.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/cards.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/cards.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2052.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2052.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2058.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2058.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2065.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2065.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2091.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2091.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2232.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/a2232.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/buddha.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/buddha.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/merlin.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/merlin.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/oktagon2008.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/oktagon2008.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/picasso2.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/picasso2.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/rainbow2.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/rainbow2.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/ripple.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/ripple.h",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/toccata.cpp",
+ MAME_DIR .. "src/devices/bus/amiga/zorro/toccata.h",
+ }
+end
+
+
---------------------------------------------------
--
--@src/devices/bus/apf/slot.h,BUSES["APF"] = true
---------------------------------------------------
-if (BUSES["APF"]~=null) then
+if BUSES["APF"] then
files {
MAME_DIR .. "src/devices/bus/apf/slot.cpp",
MAME_DIR .. "src/devices/bus/apf/slot.h",
@@ -272,10 +613,24 @@ end
---------------------------------------------------
--
+--@src/devices/bus/applepp/applepp.h,BUSES["APPLEPP"] = true
+---------------------------------------------------
+if BUSES["APPLEPP"] then
+ files {
+ MAME_DIR .. "src/devices/bus/applepp/applepp.cpp",
+ MAME_DIR .. "src/devices/bus/applepp/applepp.h",
+ MAME_DIR .. "src/devices/bus/applepp/storagehle.cpp",
+ MAME_DIR .. "src/devices/bus/applepp/storagehle.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/apricot/expansion/expansion.h,BUSES["APRICOT_EXPANSION"] = true
---------------------------------------------------
-if (BUSES["APRICOT_EXPANSION"]~=null) then
+if BUSES["APRICOT_EXPANSION"] then
files {
MAME_DIR .. "src/devices/bus/apricot/expansion/expansion.cpp",
MAME_DIR .. "src/devices/bus/apricot/expansion/expansion.h",
@@ -294,7 +649,7 @@ end
--@src/devices/bus/apricot/keyboard/keyboard.h,BUSES["APRICOT_KEYBOARD"] = true
---------------------------------------------------
-if (BUSES["APRICOT_KEYBOARD"]~=null) then
+if BUSES["APRICOT_KEYBOARD"] then
files {
MAME_DIR .. "src/devices/bus/apricot/keyboard/keyboard.cpp",
MAME_DIR .. "src/devices/bus/apricot/keyboard/keyboard.h",
@@ -309,7 +664,7 @@ end
--@src/devices/bus/apricot/video/video.h,BUSES["APRICOT_VIDEO"] = true
---------------------------------------------------
-if (BUSES["APRICOT_VIDEO"]~=null) then
+if BUSES["APRICOT_VIDEO"] then
files {
MAME_DIR .. "src/devices/bus/apricot/video/video.cpp",
MAME_DIR .. "src/devices/bus/apricot/video/video.h",
@@ -326,7 +681,7 @@ end
--@src/devices/bus/aquarius/slot.h,BUSES["AQUARIUS"] = true
---------------------------------------------------
-if (BUSES["AQUARIUS"]~=null) then
+if BUSES["AQUARIUS"] then
files {
MAME_DIR .. "src/devices/bus/aquarius/slot.cpp",
MAME_DIR .. "src/devices/bus/aquarius/slot.h",
@@ -351,7 +706,7 @@ end
--@src/devices/bus/arcadia/slot.h,BUSES["ARCADIA"] = true
---------------------------------------------------
-if (BUSES["ARCADIA"]~=null) then
+if BUSES["ARCADIA"] then
files {
MAME_DIR .. "src/devices/bus/arcadia/slot.cpp",
MAME_DIR .. "src/devices/bus/arcadia/slot.h",
@@ -366,7 +721,7 @@ end
--@src/devices/bus/archimedes/econet/slot.h,BUSES["ARCHIMEDES_ECONET"] = true
---------------------------------------------------
-if (BUSES["ARCHIMEDES_ECONET"]~=null) then
+if BUSES["ARCHIMEDES_ECONET"] then
files {
MAME_DIR .. "src/devices/bus/archimedes/econet/slot.cpp",
MAME_DIR .. "src/devices/bus/archimedes/econet/slot.h",
@@ -385,7 +740,7 @@ end
--@src/devices/bus/archimedes/podule/slot.h,BUSES["ARCHIMEDES_PODULE"] = true
---------------------------------------------------
-if (BUSES["ARCHIMEDES_PODULE"]~=null) then
+if BUSES["ARCHIMEDES_PODULE"] then
files {
MAME_DIR .. "src/devices/bus/archimedes/podule/slot.cpp",
MAME_DIR .. "src/devices/bus/archimedes/podule/slot.h",
@@ -480,7 +835,7 @@ end
--@src/devices/bus/astrocde/slot.h,BUSES["ASTROCADE"] = true
---------------------------------------------------
-if (BUSES["ASTROCADE"]~=null) then
+if BUSES["ASTROCADE"] then
files {
MAME_DIR .. "src/devices/bus/astrocde/slot.cpp",
MAME_DIR .. "src/devices/bus/astrocde/slot.h",
@@ -510,7 +865,7 @@ end
--@src/devices/bus/ata/ataintf.h,BUSES["ATA"] = true
---------------------------------------------------
-if (BUSES["ATA"]~=null) then
+if BUSES["ATA"] then
files {
MAME_DIR .. "src/devices/bus/ata/atadev.cpp",
MAME_DIR .. "src/devices/bus/ata/atadev.h",
@@ -540,31 +895,61 @@ end
---------------------------------------------------
--
---@src/devices/bus/bbc/fdc/fdc.h,BUSES["BBC_FDC"] = true
+--@src/devices/bus/bbc/1mhzbus/1mhzbus.h,BUSES["BBC_1MHZBUS"] = true
---------------------------------------------------
-if (BUSES["BBC_FDC"]~=null) then
+if BUSES["BBC_1MHZBUS"] then
files {
- MAME_DIR .. "src/devices/bus/bbc/fdc/fdc.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/fdc.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/acorn.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/acorn.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/ams.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/ams.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/cumana.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/cumana.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/cv1797.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/cv1797.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/kenda.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/kenda.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/opus.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/opus.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/solidisk.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/solidisk.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/udm.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/udm.h",
- MAME_DIR .. "src/devices/bus/bbc/fdc/watford.cpp",
- MAME_DIR .. "src/devices/bus/bbc/fdc/watford.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/1mhzbus.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/1mhzbus.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/24bbc.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/24bbc.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/2ndserial.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/2ndserial.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/autoprom.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/autoprom.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/barrybox.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/barrybox.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebex.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebex.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebopl.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebopl.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebsid.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebsid.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cc500.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cc500.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cisco.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cisco.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/datacentre.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/datacentre.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/emrmidi.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/emrmidi.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ide.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ide.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ieee488.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ieee488.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m2000.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m2000.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m5000.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m5000.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/multiform.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/multiform.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/opus3.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/opus3.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pdram.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pdram.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pms64k.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pms64k.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ramdisc.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ramdisc.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sasi.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sasi.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/scsi.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/scsi.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sprite.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sprite.h",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cfa3000opt.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cfa3000opt.h",
}
end
@@ -574,7 +959,7 @@ end
--@src/devices/bus/bbc/analogue/analogue.h,BUSES["BBC_ANALOGUE"] = true
---------------------------------------------------
-if (BUSES["BBC_ANALOGUE"]~=null) then
+if BUSES["BBC_ANALOGUE"] then
files {
MAME_DIR .. "src/devices/bus/bbc/analogue/analogue.cpp",
MAME_DIR .. "src/devices/bus/bbc/analogue/analogue.h",
@@ -599,7 +984,7 @@ end
--@src/devices/bus/bbc/cart/slot.h,BUSES["BBC_CART"] = true
---------------------------------------------------
-if (BUSES["BBC_CART"]~=null) then
+if BUSES["BBC_CART"] then
files {
MAME_DIR .. "src/devices/bus/bbc/cart/slot.cpp",
MAME_DIR .. "src/devices/bus/bbc/cart/slot.h",
@@ -619,10 +1004,62 @@ end
---------------------------------------------------
--
+--@src/devices/bus/bbc/exp/exp.h,BUSES["BBC_EXP"] = true
+---------------------------------------------------
+
+if BUSES["BBC_EXP"] then
+ files {
+ MAME_DIR .. "src/devices/bus/bbc/exp/exp.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/exp/exp.h",
+ MAME_DIR .. "src/devices/bus/bbc/exp/autocue.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/exp/autocue.h",
+ MAME_DIR .. "src/devices/bus/bbc/exp/jafacart.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/exp/jafacart.h",
+ MAME_DIR .. "src/devices/bus/bbc/exp/magazzino.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/exp/magazzino.h",
+ MAME_DIR .. "src/devices/bus/bbc/exp/mertec.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/exp/mertec.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/bbc/fdc/fdc.h,BUSES["BBC_FDC"] = true
+---------------------------------------------------
+
+if BUSES["BBC_FDC"] then
+ files {
+ MAME_DIR .. "src/devices/bus/bbc/fdc/fdc.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/fdc.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/acorn.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/acorn.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/ams.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/ams.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/cumana.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/cumana.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/cv1797.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/cv1797.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/kenda.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/kenda.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/opus.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/opus.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/solidisk.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/solidisk.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/udm.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/udm.h",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/watford.cpp",
+ MAME_DIR .. "src/devices/bus/bbc/fdc/watford.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/bbc/internal/internal.h,BUSES["BBC_INTERNAL"] = true
---------------------------------------------------
-if (BUSES["BBC_INTERNAL"]~=null) then
+if BUSES["BBC_INTERNAL"] then
files {
MAME_DIR .. "src/devices/bus/bbc/internal/internal.cpp",
MAME_DIR .. "src/devices/bus/bbc/internal/internal.h",
@@ -666,31 +1103,10 @@ end
---------------------------------------------------
--
---@src/devices/bus/bbc/exp/exp.h,BUSES["BBC_EXP"] = true
----------------------------------------------------
-
-if (BUSES["BBC_EXP"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/bbc/exp/exp.cpp",
- MAME_DIR .. "src/devices/bus/bbc/exp/exp.h",
- MAME_DIR .. "src/devices/bus/bbc/exp/autocue.cpp",
- MAME_DIR .. "src/devices/bus/bbc/exp/autocue.h",
- MAME_DIR .. "src/devices/bus/bbc/exp/jafacart.cpp",
- MAME_DIR .. "src/devices/bus/bbc/exp/jafacart.h",
- MAME_DIR .. "src/devices/bus/bbc/exp/magazzino.cpp",
- MAME_DIR .. "src/devices/bus/bbc/exp/magazzino.h",
- MAME_DIR .. "src/devices/bus/bbc/exp/mertec.cpp",
- MAME_DIR .. "src/devices/bus/bbc/exp/mertec.h",
- }
-end
-
-
----------------------------------------------------
---
--@src/devices/bus/bbc/joyport/joyport.h,BUSES["BBC_JOYPORT"] = true
---------------------------------------------------
-if (BUSES["BBC_JOYPORT"]~=null) then
+if BUSES["BBC_JOYPORT"] then
files {
MAME_DIR .. "src/devices/bus/bbc/joyport/joyport.cpp",
MAME_DIR .. "src/devices/bus/bbc/joyport/joyport.h",
@@ -707,7 +1123,7 @@ end
--@src/devices/bus/bbc/modem/modem.h,BUSES["BBC_MODEM"] = true
---------------------------------------------------
-if (BUSES["BBC_MODEM"]~=null) then
+if BUSES["BBC_MODEM"] then
files {
MAME_DIR .. "src/devices/bus/bbc/modem/modem.cpp",
MAME_DIR .. "src/devices/bus/bbc/modem/modem.h",
@@ -721,71 +1137,10 @@ end
---------------------------------------------------
--
---@src/devices/bus/bbc/1mhzbus/1mhzbus.h,BUSES["BBC_1MHZBUS"] = true
----------------------------------------------------
-
-if (BUSES["BBC_1MHZBUS"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/1mhzbus.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/1mhzbus.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/24bbc.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/24bbc.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/2ndserial.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/2ndserial.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/autoprom.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/autoprom.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/barrybox.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/barrybox.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebex.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebex.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebopl.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebopl.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebsid.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/beebsid.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cc500.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cc500.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cisco.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cisco.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/datacentre.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/datacentre.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/emrmidi.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/emrmidi.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ide.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ide.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ieee488.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ieee488.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m2000.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m2000.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m5000.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/m5000.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/multiform.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/multiform.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/opus3.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/opus3.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pdram.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pdram.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pms64k.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/pms64k.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ramdisc.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/ramdisc.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sasi.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sasi.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/scsi.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/scsi.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sprite.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/sprite.h",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cfa3000opt.cpp",
- MAME_DIR .. "src/devices/bus/bbc/1mhzbus/cfa3000opt.h",
- }
-end
-
-
----------------------------------------------------
---
--@src/devices/bus/bbc/rom/slot.h,BUSES["BBC_ROM"] = true
---------------------------------------------------
-if (BUSES["BBC_ROM"]~=null) then
+if BUSES["BBC_ROM"] then
files {
MAME_DIR .. "src/devices/bus/bbc/rom/slot.cpp",
MAME_DIR .. "src/devices/bus/bbc/rom/slot.h",
@@ -814,7 +1169,7 @@ end
--@src/devices/bus/bbc/tube/tube.h,BUSES["BBC_TUBE"] = true
---------------------------------------------------
-if (BUSES["BBC_TUBE"]~=null) then
+if BUSES["BBC_TUBE"] then
files {
MAME_DIR .. "src/devices/bus/bbc/tube/tube.cpp",
MAME_DIR .. "src/devices/bus/bbc/tube/tube.h",
@@ -855,7 +1210,7 @@ end
--@src/devices/bus/bbc/userport/userport.h,BUSES["BBC_USERPORT"] = true
---------------------------------------------------
-if (BUSES["BBC_USERPORT"]~=null) then
+if BUSES["BBC_USERPORT"] then
files {
MAME_DIR .. "src/devices/bus/bbc/userport/userport.cpp",
MAME_DIR .. "src/devices/bus/bbc/userport/userport.h",
@@ -888,7 +1243,7 @@ end
--@src/devices/bus/bbc/vsp/slot.h,BUSES["BBC_VSP"] = true
---------------------------------------------------
-if (BUSES["BBC_VSP"]~=null) then
+if BUSES["BBC_VSP"] then
files {
MAME_DIR .. "src/devices/bus/bbc/vsp/slot.cpp",
MAME_DIR .. "src/devices/bus/bbc/vsp/slot.h",
@@ -905,7 +1260,7 @@ end
--@src/devices/bus/bk/parallel.h,BUSES["BK_PARALLEL"] = true
---------------------------------------------------
-if (BUSES["BK_PARALLEL"]~=null) then
+if BUSES["BK_PARALLEL"] then
files {
MAME_DIR .. "src/devices/bus/bk/parallel.cpp",
MAME_DIR .. "src/devices/bus/bk/parallel.h",
@@ -927,10 +1282,30 @@ end
---------------------------------------------------
--
+--@src/devices/bus/bml3/bml3bus.h,BUSES["BML3"] = true
+---------------------------------------------------
+if BUSES["BML3"] then
+ files {
+ MAME_DIR .. "src/devices/bus/bml3/bml3bus.cpp",
+ MAME_DIR .. "src/devices/bus/bml3/bml3bus.h",
+ MAME_DIR .. "src/devices/bus/bml3/mp1802.cpp",
+ MAME_DIR .. "src/devices/bus/bml3/mp1802.h",
+ MAME_DIR .. "src/devices/bus/bml3/mp1805.cpp",
+ MAME_DIR .. "src/devices/bus/bml3/mp1805.h",
+ MAME_DIR .. "src/devices/bus/bml3/kanji.cpp",
+ MAME_DIR .. "src/devices/bus/bml3/kanji.h",
+ MAME_DIR .. "src/devices/bus/bml3/rtc.cpp",
+ MAME_DIR .. "src/devices/bus/bml3/rtc.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/bw2/exp.h,BUSES["BW2"] = true
---------------------------------------------------
-if (BUSES["BW2"]~=null) then
+if BUSES["BW2"] then
files {
MAME_DIR .. "src/devices/bus/bw2/exp.cpp",
MAME_DIR .. "src/devices/bus/bw2/exp.h",
@@ -946,7 +1321,7 @@ end
--@src/devices/bus/c64/user.h,BUSES["C64"] = true
---------------------------------------------------
-if (BUSES["C64"]~=null) then
+if BUSES["C64"] then
files {
MAME_DIR .. "src/devices/bus/c64/exp.cpp",
MAME_DIR .. "src/devices/bus/c64/exp.h",
@@ -1111,7 +1486,7 @@ end
--@src/devices/bus/casloopy/slot.h,BUSES["CASLOOPY"] = true
---------------------------------------------------
-if (BUSES["CASLOOPY"]~=null) then
+if BUSES["CASLOOPY"] then
files {
MAME_DIR .. "src/devices/bus/casloopy/slot.cpp",
MAME_DIR .. "src/devices/bus/casloopy/slot.h",
@@ -1127,7 +1502,7 @@ end
--@src/devices/bus/cbm2/user.h,BUSES["CBM2"] = true
---------------------------------------------------
-if (BUSES["CBM2"]~=null) then
+if BUSES["CBM2"] then
files {
MAME_DIR .. "src/devices/bus/cbm2/exp.cpp",
MAME_DIR .. "src/devices/bus/cbm2/exp.h",
@@ -1148,7 +1523,7 @@ end
--@src/devices/bus/cbmiec/cbmiec.h,BUSES["CBMIEC"] = true
---------------------------------------------------
-if (BUSES["CBMIEC"]~=null) then
+if BUSES["CBMIEC"] then
files {
MAME_DIR .. "src/devices/bus/cbmiec/cbmiec.cpp",
MAME_DIR .. "src/devices/bus/cbmiec/cbmiec.h",
@@ -1184,61 +1559,186 @@ end
---------------------------------------------------
--
---@src/devices/bus/chanf/slot.h,BUSES["CHANNELF"] = true
+--@src/devices/bus/centronics/ctronics.h,BUSES["CENTRONICS"] = true
---------------------------------------------------
-if (BUSES["CHANNELF"]~=null) then
+if BUSES["CENTRONICS"] then
files {
- MAME_DIR .. "src/devices/bus/chanf/slot.cpp",
- MAME_DIR .. "src/devices/bus/chanf/slot.h",
- MAME_DIR .. "src/devices/bus/chanf/rom.cpp",
- MAME_DIR .. "src/devices/bus/chanf/rom.h",
+ MAME_DIR .. "src/devices/bus/centronics/adaptator.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/adaptator.h",
+ MAME_DIR .. "src/devices/bus/centronics/ctronics.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/ctronics.h",
+ MAME_DIR .. "src/devices/bus/centronics/chessmec.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/chessmec.h",
+ MAME_DIR .. "src/devices/bus/centronics/comxpl80.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/comxpl80.h",
+ MAME_DIR .. "src/devices/bus/centronics/covox.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/covox.h",
+ MAME_DIR .. "src/devices/bus/centronics/digiblst.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/digiblst.h",
+ MAME_DIR .. "src/devices/bus/centronics/dsjoy.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/dsjoy.h",
+ MAME_DIR .. "src/devices/bus/centronics/epson_ex800.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/epson_ex800.h",
+ MAME_DIR .. "src/devices/bus/centronics/epson_fx80.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/epson_fx80.h",
+ MAME_DIR .. "src/devices/bus/centronics/epson_lx800.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/epson_lx800.h",
+ MAME_DIR .. "src/devices/bus/centronics/epson_lx810l.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/epson_lx810l.h",
+ MAME_DIR .. "src/devices/bus/centronics/epson_rx80.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/epson_rx80.h",
+ MAME_DIR .. "src/devices/bus/centronics/hasp_savquest.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/hasp_savquest.h",
+ MAME_DIR .. "src/devices/bus/centronics/mz1p16.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/mz1p16.h",
+ MAME_DIR .. "src/devices/bus/centronics/nec_p72.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/nec_p72.h",
+ MAME_DIR .. "src/devices/bus/centronics/nlq401.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/nlq401.h",
+ MAME_DIR .. "src/devices/bus/centronics/printer.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/printer.h",
+ MAME_DIR .. "src/devices/bus/centronics/samdac.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/samdac.h",
+ MAME_DIR .. "src/devices/bus/centronics/smartboard.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/smartboard.h",
+ MAME_DIR .. "src/devices/bus/centronics/spjoy.cpp",
+ MAME_DIR .. "src/devices/bus/centronics/spjoy.h",
+ }
+
+ dependency {
+ { MAME_DIR .. "src/devices/bus/centronics/epson_ex800.cpp", GEN_DIR .. "emu/layout/ex800.lh" },
+ { MAME_DIR .. "src/devices/bus/centronics/epson_lx800.cpp", GEN_DIR .. "emu/layout/lx800.lh" },
+ { MAME_DIR .. "src/devices/bus/centronics/epson_lx810l.cpp", GEN_DIR .. "emu/layout/lx800.lh" },
+ { MAME_DIR .. "src/devices/bus/centronics/smartboard.cpp", GEN_DIR .. "emu/layout/smartboard.lh" },
+ }
+
+ custombuildtask {
+ layoutbuildtask("emu/layout", "ex800"),
+ layoutbuildtask("emu/layout", "lx800"),
+ layoutbuildtask("emu/layout", "smartboard"),
}
end
---------------------------------------------------
--
---@src/devices/bus/comx35/exp.h,BUSES["COMX35"] = true
+--@src/devices/bus/cgenie/expansion/expansion.h,BUSES["CGENIE_EXPANSION"] = true
---------------------------------------------------
-if (BUSES["COMX35"]~=null) then
+if BUSES["CGENIE_EXPANSION"] then
files {
- MAME_DIR .. "src/devices/bus/comx35/exp.cpp",
- MAME_DIR .. "src/devices/bus/comx35/exp.h",
- MAME_DIR .. "src/devices/bus/comx35/clm.cpp",
- MAME_DIR .. "src/devices/bus/comx35/clm.h",
- MAME_DIR .. "src/devices/bus/comx35/expbox.cpp",
- MAME_DIR .. "src/devices/bus/comx35/expbox.h",
- MAME_DIR .. "src/devices/bus/comx35/eprom.cpp",
- MAME_DIR .. "src/devices/bus/comx35/eprom.h",
- MAME_DIR .. "src/devices/bus/comx35/fdc.cpp",
- MAME_DIR .. "src/devices/bus/comx35/fdc.h",
- MAME_DIR .. "src/devices/bus/comx35/joycard.cpp",
- MAME_DIR .. "src/devices/bus/comx35/joycard.h",
- MAME_DIR .. "src/devices/bus/comx35/printer.cpp",
- MAME_DIR .. "src/devices/bus/comx35/printer.h",
- MAME_DIR .. "src/devices/bus/comx35/ram.cpp",
- MAME_DIR .. "src/devices/bus/comx35/ram.h",
- MAME_DIR .. "src/devices/bus/comx35/thermal.cpp",
- MAME_DIR .. "src/devices/bus/comx35/thermal.h",
+ MAME_DIR .. "src/devices/bus/cgenie/expansion/expansion.cpp",
+ MAME_DIR .. "src/devices/bus/cgenie/expansion/expansion.h",
+ MAME_DIR .. "src/devices/bus/cgenie/expansion/carts.cpp",
+ MAME_DIR .. "src/devices/bus/cgenie/expansion/carts.h",
+ MAME_DIR .. "src/devices/bus/cgenie/expansion/floppy.cpp",
+ MAME_DIR .. "src/devices/bus/cgenie/expansion/floppy.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/cgenie/parallel/parallel.h,BUSES["CGENIE_PARALLEL"] = true
+---------------------------------------------------
+
+if BUSES["CGENIE_PARALLEL"] then
+ files {
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/parallel.cpp",
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/parallel.h",
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/carts.cpp",
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/carts.h",
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/joystick.cpp",
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/joystick.h",
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/printer.cpp",
+ MAME_DIR .. "src/devices/bus/cgenie/parallel/printer.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/coleco/controller/ctrl.h,BUSES["COLECO_CONTROLLER"] = true
+--@src/devices/bus/chanf/slot.h,BUSES["CHANNELF"] = true
---------------------------------------------------
-if (BUSES["COLECO_CONTROLLER"]~=null) then
+if BUSES["CHANNELF"] then
files {
- MAME_DIR .. "src/devices/bus/coleco/controller/ctrl.cpp",
- MAME_DIR .. "src/devices/bus/coleco/controller/ctrl.h",
- MAME_DIR .. "src/devices/bus/coleco/controller/hand.cpp",
- MAME_DIR .. "src/devices/bus/coleco/controller/hand.h",
- MAME_DIR .. "src/devices/bus/coleco/controller/sac.cpp",
- MAME_DIR .. "src/devices/bus/coleco/controller/sac.h",
+ MAME_DIR .. "src/devices/bus/chanf/slot.cpp",
+ MAME_DIR .. "src/devices/bus/chanf/slot.h",
+ MAME_DIR .. "src/devices/bus/chanf/rom.cpp",
+ MAME_DIR .. "src/devices/bus/chanf/rom.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/coco/cococart.h,BUSES["COCO"] = true
+---------------------------------------------------
+if BUSES["COCO"] then
+ files {
+ MAME_DIR .. "src/devices/bus/coco/coco_dcmodem.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_dcmodem.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_dwsock.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_dwsock.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_fdc.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_gmc.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_gmc.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_ide.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_ide.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_max.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_max.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_midi.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_midi.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_multi.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_multi.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_orch90.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_orch90.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_pak.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_pak.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_psg.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_psg.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_ram.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_ram.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_rs232.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_rs232.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_ssc.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_ssc.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_stecomp.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_stecomp.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_sym12.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_sym12.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_t4426.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_t4426.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_wpk.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_wpk.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_wpk2p.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_wpk2p.h",
+ MAME_DIR .. "src/devices/bus/coco/coco_xsid.cpp",
+ MAME_DIR .. "src/devices/bus/coco/coco_xsid.h",
+ MAME_DIR .. "src/devices/bus/coco/cococart.cpp",
+ MAME_DIR .. "src/devices/bus/coco/cococart.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_amtor.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_amtor.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_claw.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_claw.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_fdc.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_jcbsnd.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_jcbsnd.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_jcbspch.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_jcbspch.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_msx2.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_msx2.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_serial.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_serial.h",
+ MAME_DIR .. "src/devices/bus/coco/dragon_sprites.cpp",
+ MAME_DIR .. "src/devices/bus/coco/dragon_sprites.h",
+ MAME_DIR .. "src/devices/bus/coco/meb_intrf.cpp",
+ MAME_DIR .. "src/devices/bus/coco/meb_intrf.h",
+ MAME_DIR .. "src/devices/bus/coco/meb_rtime.cpp",
+ MAME_DIR .. "src/devices/bus/coco/meb_rtime.h",
}
end
@@ -1248,7 +1748,7 @@ end
--@src/devices/bus/coleco/cartridge/exp.h,BUSES["COLECO_CART"] = true
---------------------------------------------------
-if (BUSES["COLECO_CART"]~=null) then
+if BUSES["COLECO_CART"] then
files {
MAME_DIR .. "src/devices/bus/coleco/cartridge/exp.cpp",
MAME_DIR .. "src/devices/bus/coleco/cartridge/exp.h",
@@ -1268,10 +1768,27 @@ end
---------------------------------------------------
--
+--@src/devices/bus/coleco/controller/ctrl.h,BUSES["COLECO_CONTROLLER"] = true
+---------------------------------------------------
+
+if BUSES["COLECO_CONTROLLER"] then
+ files {
+ MAME_DIR .. "src/devices/bus/coleco/controller/ctrl.cpp",
+ MAME_DIR .. "src/devices/bus/coleco/controller/ctrl.h",
+ MAME_DIR .. "src/devices/bus/coleco/controller/hand.cpp",
+ MAME_DIR .. "src/devices/bus/coleco/controller/hand.h",
+ MAME_DIR .. "src/devices/bus/coleco/controller/sac.cpp",
+ MAME_DIR .. "src/devices/bus/coleco/controller/sac.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/coleco/expansion/expansion.h,BUSES["COLECO_EXPANSION"] = true
---------------------------------------------------
-if (BUSES["COLECO_EXPANSION"]~=null) then
+if BUSES["COLECO_EXPANSION"] then
files {
MAME_DIR .. "src/devices/bus/coleco/expansion/expansion.cpp",
MAME_DIR .. "src/devices/bus/coleco/expansion/expansion.h",
@@ -1285,10 +1802,110 @@ end
---------------------------------------------------
--
+--@src/devices/bus/compis/graphics.h,BUSES["COMPIS_GRAPHICS"] = true
+---------------------------------------------------
+
+if BUSES["COMPIS_GRAPHICS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/compis/graphics.cpp",
+ MAME_DIR .. "src/devices/bus/compis/graphics.h",
+ MAME_DIR .. "src/devices/bus/compis/hrg.cpp",
+ MAME_DIR .. "src/devices/bus/compis/hrg.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/compucolor/floppy.h,BUSES["COMPUCOLOR"] = true
+---------------------------------------------------
+if BUSES["COMPUCOLOR"] then
+ files {
+ MAME_DIR .. "src/devices/bus/compucolor/floppy.cpp",
+ MAME_DIR .. "src/devices/bus/compucolor/floppy.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/comx35/exp.h,BUSES["COMX35"] = true
+---------------------------------------------------
+
+if BUSES["COMX35"] then
+ files {
+ MAME_DIR .. "src/devices/bus/comx35/exp.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/exp.h",
+ MAME_DIR .. "src/devices/bus/comx35/clm.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/clm.h",
+ MAME_DIR .. "src/devices/bus/comx35/expbox.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/expbox.h",
+ MAME_DIR .. "src/devices/bus/comx35/eprom.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/eprom.h",
+ MAME_DIR .. "src/devices/bus/comx35/fdc.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/fdc.h",
+ MAME_DIR .. "src/devices/bus/comx35/joycard.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/joycard.h",
+ MAME_DIR .. "src/devices/bus/comx35/printer.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/printer.h",
+ MAME_DIR .. "src/devices/bus/comx35/ram.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/ram.h",
+ MAME_DIR .. "src/devices/bus/comx35/thermal.cpp",
+ MAME_DIR .. "src/devices/bus/comx35/thermal.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/cpc/cpcexp.h,BUSES["CPC"] = true
+---------------------------------------------------
+if BUSES["CPC"] then
+ files {
+ MAME_DIR .. "src/devices/bus/cpc/cpcexp.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/cpcexp.h",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_ssa1.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_ssa1.h",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_rom.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_rom.h",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_pds.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_pds.h",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_rs232.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/cpc_rs232.h",
+ MAME_DIR .. "src/devices/bus/cpc/mface2.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/mface2.h",
+ MAME_DIR .. "src/devices/bus/cpc/symbfac2.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/symbfac2.h",
+ MAME_DIR .. "src/devices/bus/cpc/amdrum.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/amdrum.h",
+ MAME_DIR .. "src/devices/bus/cpc/playcity.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/playcity.h",
+ MAME_DIR .. "src/devices/bus/cpc/smartwatch.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/smartwatch.h",
+ MAME_DIR .. "src/devices/bus/cpc/brunword4.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/brunword4.h",
+ MAME_DIR .. "src/devices/bus/cpc/hd20.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/hd20.h",
+ MAME_DIR .. "src/devices/bus/cpc/ddi1.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/ddi1.h",
+ MAME_DIR .. "src/devices/bus/cpc/magicsound.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/magicsound.h",
+ MAME_DIR .. "src/devices/bus/cpc/doubler.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/doubler.h",
+ MAME_DIR .. "src/devices/bus/cpc/transtape.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/transtape.h",
+ MAME_DIR .. "src/devices/bus/cpc/musicmachine.cpp",
+ MAME_DIR .. "src/devices/bus/cpc/musicmachine.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/crvision/slot.h,BUSES["CRVISION"] = true
---------------------------------------------------
-if (BUSES["CRVISION"]~=null) then
+if BUSES["CRVISION"] then
files {
MAME_DIR .. "src/devices/bus/crvision/slot.cpp",
MAME_DIR .. "src/devices/bus/crvision/slot.h",
@@ -1303,7 +1920,7 @@ end
--@src/devices/bus/dmv/dmvbus.h,BUSES["DMV"] = true
---------------------------------------------------
-if (BUSES["DMV"]~=null) then
+if BUSES["DMV"] then
files {
MAME_DIR .. "src/devices/bus/dmv/dmvbus.cpp",
MAME_DIR .. "src/devices/bus/dmv/dmvbus.h",
@@ -1334,7 +1951,7 @@ end
--@src/devices/bus/ecbbus/ecbbus.h,BUSES["ECBBUS"] = true
---------------------------------------------------
-if (BUSES["ECBBUS"]~=null) then
+if BUSES["ECBBUS"] then
files {
MAME_DIR .. "src/devices/bus/ecbbus/ecbbus.cpp",
MAME_DIR .. "src/devices/bus/ecbbus/ecbbus.h",
@@ -1349,7 +1966,7 @@ end
--@src/devices/bus/econet/econet.h,BUSES["ECONET"] = true
---------------------------------------------------
-if (BUSES["ECONET"]~=null) then
+if BUSES["ECONET"] then
files {
MAME_DIR .. "src/devices/bus/econet/econet.cpp",
MAME_DIR .. "src/devices/bus/econet/econet.h",
@@ -1358,12 +1975,48 @@ if (BUSES["ECONET"]~=null) then
}
end
+
+---------------------------------------------------
+--
+--@src/devices/bus/einstein/pipe/pipe.h,BUSES["EINSTEIN_PIPE"] = true
+---------------------------------------------------
+
+if BUSES["EINSTEIN_PIPE"] then
+ files {
+ MAME_DIR .. "src/devices/bus/einstein/pipe/pipe.cpp",
+ MAME_DIR .. "src/devices/bus/einstein/pipe/pipe.h",
+ MAME_DIR .. "src/devices/bus/einstein/pipe/silicon_disc.cpp",
+ MAME_DIR .. "src/devices/bus/einstein/pipe/silicon_disc.h",
+ MAME_DIR .. "src/devices/bus/einstein/pipe/speculator.cpp",
+ MAME_DIR .. "src/devices/bus/einstein/pipe/speculator.h",
+ MAME_DIR .. "src/devices/bus/einstein/pipe/tk02.cpp",
+ MAME_DIR .. "src/devices/bus/einstein/pipe/tk02.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/einstein/userport/userport.h,BUSES["EINSTEIN_USERPORT"] = true
+---------------------------------------------------
+
+if BUSES["EINSTEIN_USERPORT"] then
+ files {
+ MAME_DIR .. "src/devices/bus/einstein/userport/userport.cpp",
+ MAME_DIR .. "src/devices/bus/einstein/userport/userport.h",
+ MAME_DIR .. "src/devices/bus/einstein/userport/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/einstein/userport/mouse.h",
+ MAME_DIR .. "src/devices/bus/einstein/userport/speech.cpp",
+ MAME_DIR .. "src/devices/bus/einstein/userport/speech.h",
+ }
+end
+
+
---------------------------------------------------
--
--@src/devices/bus/ekara/slot.h,BUSES["EKARA"] = true
---------------------------------------------------
-if (BUSES["EKARA"]~=null) then
+if BUSES["EKARA"] then
files {
MAME_DIR .. "src/devices/bus/ekara/slot.cpp",
MAME_DIR .. "src/devices/bus/ekara/slot.h",
@@ -1377,7 +2030,7 @@ end
--@src/devices/bus/electron/exp.h,BUSES["ELECTRON"] = true
---------------------------------------------------
-if (BUSES["ELECTRON"]~=null) then
+if BUSES["ELECTRON"] then
files {
MAME_DIR .. "src/devices/bus/electron/exp.cpp",
MAME_DIR .. "src/devices/bus/electron/exp.h",
@@ -1414,13 +2067,12 @@ if (BUSES["ELECTRON"]~=null) then
}
end
-
---------------------------------------------------
--
--@src/devices/bus/electron/cart/slot.h,BUSES["ELECTRON_CART"] = true
---------------------------------------------------
-if (BUSES["ELECTRON_CART"]~=null) then
+if BUSES["ELECTRON_CART"] then
files {
MAME_DIR .. "src/devices/bus/electron/cart/slot.cpp",
MAME_DIR .. "src/devices/bus/electron/cart/slot.h",
@@ -1467,7 +2119,7 @@ end
--@src/devices/bus/ep64/exp.h,BUSES["EP64"] = true
---------------------------------------------------
-if (BUSES["EP64"]~=null) then
+if BUSES["EP64"] then
files {
MAME_DIR .. "src/devices/bus/ep64/exp.cpp",
MAME_DIR .. "src/devices/bus/ep64/exp.h",
@@ -1479,10 +2131,70 @@ end
---------------------------------------------------
--
+--@src/devices/bus/epson_qx/option.h,BUSES["EPSON_QX"] = true
+---------------------------------------------------
+if BUSES["EPSON_QX"] then
+ files {
+ MAME_DIR .. "src/devices/bus/epson_qx/cqgmem.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/cqgmem.h",
+ MAME_DIR .. "src/devices/bus/epson_qx/cr1510.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/cr1510.h",
+ MAME_DIR .. "src/devices/bus/epson_qx/ide.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/ide.h",
+ MAME_DIR .. "src/devices/bus/epson_qx/multifont.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/multifont.h",
+ MAME_DIR .. "src/devices/bus/epson_qx/option.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/option.h",
+ MAME_DIR .. "src/devices/bus/epson_qx/sound_card.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/sound_card.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/epson_qx/keyboard/keyboard.h,BUSES["EPSON_QX_KEYBOARD"] = true
+---------------------------------------------------
+
+if BUSES["EPSON_QX_KEYBOARD"] then
+ files {
+ MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.h",
+ MAME_DIR .. "src/devices/bus/epson_qx/keyboard/matrix.cpp",
+ MAME_DIR .. "src/devices/bus/epson_qx/keyboard/matrix.h",
+ }
+ dependency {
+ { MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.cpp", GEN_DIR .. "emu/layout/qx10ascii.lh" },
+ { MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.cpp", GEN_DIR .. "emu/layout/qx10hasci.lh" },
+ }
+
+ custombuildtask {
+ layoutbuildtask("emu/layout", "qx10ascii"),
+ layoutbuildtask("emu/layout", "qx10hasci"),
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/epson_sio/epson_sio.h,BUSES["EPSON_SIO"] = true
+---------------------------------------------------
+if BUSES["EPSON_SIO"] then
+ files {
+ MAME_DIR .. "src/devices/bus/epson_sio/epson_sio.cpp",
+ MAME_DIR .. "src/devices/bus/epson_sio/epson_sio.h",
+ MAME_DIR .. "src/devices/bus/epson_sio/pf10.cpp",
+ MAME_DIR .. "src/devices/bus/epson_sio/pf10.h",
+ MAME_DIR .. "src/devices/bus/epson_sio/tf20.cpp",
+ MAME_DIR .. "src/devices/bus/epson_sio/tf20.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/fmt_scsi/fmt_scsi.h,BUSES["FMT_SCSI"] = true
---------------------------------------------------
-if (BUSES["FMT_SCSI"]~=null) then
+if BUSES["FMT_SCSI"] then
files {
MAME_DIR .. "src/devices/bus/fmt_scsi/fmt_scsi.cpp",
MAME_DIR .. "src/devices/bus/fmt_scsi/fmt_scsi.h",
@@ -1496,7 +2208,7 @@ end
--@src/devices/bus/fp1000/fp1000_exp.h,BUSES["FP1000"] = true
---------------------------------------------------
-if (BUSES["FP1000"]~=null) then
+if BUSES["FP1000"] then
files {
MAME_DIR .. "src/devices/bus/fp1000/fp1000_exp.cpp",
MAME_DIR .. "src/devices/bus/fp1000/fp1000_exp.h",
@@ -1517,7 +2229,7 @@ end
--@src/devices/bus/gamate/slot.h,BUSES["GAMATE"] = true
---------------------------------------------------
-if (BUSES["GAMATE"]~=null) then
+if BUSES["GAMATE"] then
files {
MAME_DIR .. "src/devices/bus/gamate/slot.cpp",
MAME_DIR .. "src/devices/bus/gamate/slot.h",
@@ -1531,10 +2243,98 @@ end
---------------------------------------------------
--
+--@src/devices/bus/gameboy/slot.h,BUSES["GAMEBOY"] = true
+---------------------------------------------------
+
+if BUSES["GAMEBOY"] then
+ files {
+ MAME_DIR .. "src/devices/bus/gameboy/camera.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/camera.h",
+ MAME_DIR .. "src/devices/bus/gameboy/cartbase.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/cartbase.h",
+ MAME_DIR .. "src/devices/bus/gameboy/cartbase.ipp",
+ MAME_DIR .. "src/devices/bus/gameboy/cartheader.h",
+ MAME_DIR .. "src/devices/bus/gameboy/carts.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/carts.h",
+ MAME_DIR .. "src/devices/bus/gameboy/gbck003.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/gbck003.h",
+ MAME_DIR .. "src/devices/bus/gameboy/gbslot.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/gbslot.h",
+ MAME_DIR .. "src/devices/bus/gameboy/gbxfile.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/gbxfile.h",
+ MAME_DIR .. "src/devices/bus/gameboy/huc1.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/huc1.h",
+ MAME_DIR .. "src/devices/bus/gameboy/huc3.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/huc3.h",
+ MAME_DIR .. "src/devices/bus/gameboy/liebao.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/liebao.h",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc.h",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc2.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc2.h",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc3.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc3.h",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc6.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc6.h",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc7.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/mbc7.h",
+ MAME_DIR .. "src/devices/bus/gameboy/mdslot.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/mdslot.h",
+ MAME_DIR .. "src/devices/bus/gameboy/mmm01.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/mmm01.h",
+ MAME_DIR .. "src/devices/bus/gameboy/ntnew.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/ntnew.h",
+ MAME_DIR .. "src/devices/bus/gameboy/rom.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/rom.h",
+ MAME_DIR .. "src/devices/bus/gameboy/slmulti.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/slmulti.h",
+ MAME_DIR .. "src/devices/bus/gameboy/slot.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/slot.h",
+ MAME_DIR .. "src/devices/bus/gameboy/tama5.cpp",
+ MAME_DIR .. "src/devices/bus/gameboy/tama5.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/gba/gba_slot.h,BUSES["GBA"] = true
+---------------------------------------------------
+
+if BUSES["GBA"] then
+ files {
+ MAME_DIR .. "src/devices/bus/gba/gba_slot.cpp",
+ MAME_DIR .. "src/devices/bus/gba/gba_slot.h",
+ MAME_DIR .. "src/devices/bus/gba/rom.cpp",
+ MAME_DIR .. "src/devices/bus/gba/rom.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/generic/slot.h,BUSES["GENERIC"] = true
+---------------------------------------------------
+
+if BUSES["GENERIC"] then
+ files {
+ MAME_DIR .. "src/devices/bus/generic/slot.cpp",
+ MAME_DIR .. "src/devices/bus/generic/slot.h",
+ MAME_DIR .. "src/devices/bus/generic/carts.cpp",
+ MAME_DIR .. "src/devices/bus/generic/carts.h",
+ MAME_DIR .. "src/devices/bus/generic/ram.cpp",
+ MAME_DIR .. "src/devices/bus/generic/ram.h",
+ MAME_DIR .. "src/devices/bus/generic/rom.cpp",
+ MAME_DIR .. "src/devices/bus/generic/rom.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/gio64/gio64.h,BUSES["GIO64"] = true
---------------------------------------------------
-if (BUSES["GIO64"]~=null) then
+if BUSES["GIO64"] then
files {
MAME_DIR .. "src/devices/bus/gio64/gio64.cpp",
MAME_DIR .. "src/devices/bus/gio64/gio64.h",
@@ -1546,30 +2346,166 @@ end
---------------------------------------------------
--
---@src/devices/bus/hp_hil/hp_hil.h,BUSES["HPHIL"] = true
+--@src/devices/bus/heathzenith/h19/tlb.h,BUSES["HEATHZENITH_H19"] = true
---------------------------------------------------
-if (BUSES["HPHIL"]~=null) then
+if BUSES["HEATHZENITH_H19"] then
files {
- MAME_DIR .. "src/devices/bus/hp_hil/hp_hil.cpp",
- MAME_DIR .. "src/devices/bus/hp_hil/hp_hil.h",
- MAME_DIR .. "src/devices/bus/hp_hil/hil_devices.cpp",
- MAME_DIR .. "src/devices/bus/hp_hil/hil_devices.h",
- MAME_DIR .. "src/devices/bus/hp_hil/hlebase.cpp",
- MAME_DIR .. "src/devices/bus/hp_hil/hlebase.h",
- MAME_DIR .. "src/devices/bus/hp_hil/hlemouse.cpp",
- MAME_DIR .. "src/devices/bus/hp_hil/hlemouse.h",
- MAME_DIR .. "src/devices/bus/hp_hil/hlekbd.cpp",
- MAME_DIR .. "src/devices/bus/hp_hil/hlekbd.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h19/tlb.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h19/tlb.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/hp_dio/hp_dio.h,BUSES["HPDIO"] = true
+--@src/devices/bus/heathzenith/h8/h8bus.h,BUSES["HEATHZENITH_H8"] = true
---------------------------------------------------
-if (BUSES["HPDIO"]~=null) then
+if BUSES["HEATHZENITH_H8"] then
+ files {
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/cards.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/cards.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/cpu8080.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/cpu8080.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/front_panel.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/front_panel.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/h8bus.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/h8bus.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_1.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_1.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_5.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_5.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_6.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_6.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_8.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_8.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_16.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_16.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_64.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_64.h",
+ }
+
+ dependency {
+ { MAME_DIR .. "src/devices/bus/heathzenith/h8/front_panel.cpp", GEN_DIR .. "emu/layout/h8_fp.lh" },
+ }
+
+ custombuildtask {
+ layoutbuildtask("emu/layout", "h8_fp"),
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/heathzenith/h89/h89bus.h,BUSES["HEATHZENITH_H89"] = true
+---------------------------------------------------
+
+if BUSES["HEATHZENITH_H89"] then
+ files {
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/cdr_fdc_880h.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/cdr_fdc_880h.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h89bus.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h89bus.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h17_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h17_fdc.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_3.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_3.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_5.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_5.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/mms77316_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/mms77316_fdc.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_sound.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_sound.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_parallel_port.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_parallel_port.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/we_pullup.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/we_pullup.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/z_89_11.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/z_89_11.h",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/z37_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/h89/z37_fdc.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/heathzenith/intr_cntrl/intr_cntrl.h,BUSES["HEATHZENITH_INTR_CNTRL"] = true
+---------------------------------------------------
+
+if BUSES["HEATHZENITH_INTR_CNTRL"] then
+ files {
+ MAME_DIR .. "src/devices/bus/heathzenith/intr_cntrl/intr_cntrl.cpp",
+ MAME_DIR .. "src/devices/bus/heathzenith/intr_cntrl/intr_cntrl.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/hexbus/hexbus.h,BUSES["HEXBUS"] = true
+---------------------------------------------------
+
+if BUSES["HEXBUS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/hexbus/hexbus.cpp",
+ MAME_DIR .. "src/devices/bus/hexbus/hexbus.h",
+ MAME_DIR .. "src/devices/bus/hexbus/hx5102.cpp",
+ MAME_DIR .. "src/devices/bus/hexbus/hx5102.h",
+ MAME_DIR .. "src/devices/bus/hexbus/tp0370.cpp",
+ MAME_DIR .. "src/devices/bus/hexbus/tp0370.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/hp80_io/hp80_io.h,BUSES["HP80_IO"] = true
+---------------------------------------------------
+
+if BUSES["HP80_IO"] then
+ files {
+ MAME_DIR .. "src/devices/bus/hp80_io/hp80_io.cpp",
+ MAME_DIR .. "src/devices/bus/hp80_io/hp80_io.h",
+ MAME_DIR .. "src/devices/bus/hp80_io/82900.cpp",
+ MAME_DIR .. "src/devices/bus/hp80_io/82900.h",
+ MAME_DIR .. "src/devices/bus/hp80_io/82937.cpp",
+ MAME_DIR .. "src/devices/bus/hp80_io/82937.h",
+ MAME_DIR .. "src/devices/bus/hp80_io/82939.cpp",
+ MAME_DIR .. "src/devices/bus/hp80_io/82939.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/hp9845_io/hp9845_io.h,BUSES["HP9845_IO"] = true
+---------------------------------------------------
+
+if BUSES["HP9845_IO"] then
+ files {
+ MAME_DIR .. "src/devices/bus/hp9845_io/hp9845_io.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/hp9845_io.h",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98032.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98032.h",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98034.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98034.h",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98035.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98035.h",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98036.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98036.h",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98046.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/98046.h",
+ MAME_DIR .. "src/devices/bus/hp9845_io/hp9871.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/hp9871.h",
+ MAME_DIR .. "src/devices/bus/hp9845_io/hp9885.cpp",
+ MAME_DIR .. "src/devices/bus/hp9845_io/hp9885.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/hp_dio/hp_dio.h,BUSES["HP_DIO"] = true
+---------------------------------------------------
+
+if BUSES["HP_DIO"] then
files {
MAME_DIR .. "src/devices/bus/hp_dio/hp_dio.cpp",
MAME_DIR .. "src/devices/bus/hp_dio/hp_dio.h",
@@ -1602,35 +2538,35 @@ end
---------------------------------------------------
--
---@src/devices/bus/generic/slot.h,BUSES["GENERIC"] = true
+--@src/devices/bus/hp_hil/hp_hil.h,BUSES["HP_HIL"] = true
---------------------------------------------------
-if (BUSES["GENERIC"]~=null) then
+if BUSES["HP_HIL"] then
files {
- MAME_DIR .. "src/devices/bus/generic/slot.cpp",
- MAME_DIR .. "src/devices/bus/generic/slot.h",
- MAME_DIR .. "src/devices/bus/generic/carts.cpp",
- MAME_DIR .. "src/devices/bus/generic/carts.h",
- MAME_DIR .. "src/devices/bus/generic/ram.cpp",
- MAME_DIR .. "src/devices/bus/generic/ram.h",
- MAME_DIR .. "src/devices/bus/generic/rom.cpp",
- MAME_DIR .. "src/devices/bus/generic/rom.h",
+ MAME_DIR .. "src/devices/bus/hp_hil/hp_hil.cpp",
+ MAME_DIR .. "src/devices/bus/hp_hil/hp_hil.h",
+ MAME_DIR .. "src/devices/bus/hp_hil/hil_devices.cpp",
+ MAME_DIR .. "src/devices/bus/hp_hil/hil_devices.h",
+ MAME_DIR .. "src/devices/bus/hp_hil/hlebase.cpp",
+ MAME_DIR .. "src/devices/bus/hp_hil/hlebase.h",
+ MAME_DIR .. "src/devices/bus/hp_hil/hlemouse.cpp",
+ MAME_DIR .. "src/devices/bus/hp_hil/hlemouse.h",
+ MAME_DIR .. "src/devices/bus/hp_hil/hlekbd.cpp",
+ MAME_DIR .. "src/devices/bus/hp_hil/hlekbd.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/hexbus/hexbus.h,BUSES["HEXBUS"] = true
+--@src/devices/bus/hp_ipc_io/hp_ipc_io.h,BUSES["HP_IPC_IO"] = true
---------------------------------------------------
-if (BUSES["HEXBUS"]~=null) then
+if BUSES["HP_IPC_IO"] then
files {
- MAME_DIR .. "src/devices/bus/hexbus/hexbus.cpp",
- MAME_DIR .. "src/devices/bus/hexbus/hexbus.h",
- MAME_DIR .. "src/devices/bus/hexbus/hx5102.cpp",
- MAME_DIR .. "src/devices/bus/hexbus/hx5102.h",
- MAME_DIR .. "src/devices/bus/hexbus/tp0370.cpp",
- MAME_DIR .. "src/devices/bus/hexbus/tp0370.h",
+ MAME_DIR .. "src/devices/bus/hp_ipc_io/hp_ipc_io.cpp",
+ MAME_DIR .. "src/devices/bus/hp_ipc_io/hp_ipc_io.h",
+ MAME_DIR .. "src/devices/bus/hp_ipc_io/82919.cpp",
+ MAME_DIR .. "src/devices/bus/hp_ipc_io/82919.h",
}
end
@@ -1639,7 +2575,7 @@ end
--@src/devices/bus/idpartner/bus.h,BUSES["IDPARTNER"] = true
---------------------------------------------------
-if (BUSES["IDPARTNER"]~=null) then
+if BUSES["IDPARTNER"] then
files {
MAME_DIR .. "src/devices/bus/idpartner/bus.cpp",
MAME_DIR .. "src/devices/bus/idpartner/bus.h",
@@ -1655,7 +2591,7 @@ end
--@src/devices/bus/ieee488/ieee488.h,BUSES["IEEE488"] = true
---------------------------------------------------
-if (BUSES["IEEE488"]~=null) then
+if BUSES["IEEE488"] then
files {
MAME_DIR .. "src/devices/bus/ieee488/ieee488.cpp",
MAME_DIR .. "src/devices/bus/ieee488/ieee488.h",
@@ -1706,7 +2642,7 @@ end
--@src/devices/bus/iq151/iq151.h,BUSES["IQ151"] = true
---------------------------------------------------
-if (BUSES["IQ151"]~=null) then
+if BUSES["IQ151"] then
files {
MAME_DIR .. "src/devices/bus/iq151/iq151.cpp",
MAME_DIR .. "src/devices/bus/iq151/iq151.h",
@@ -1735,7 +2671,7 @@ end
--@src/devices/bus/imi7000/imi7000.h,BUSES["IMI7000"] = true
---------------------------------------------------
-if (BUSES["IMI7000"]~=null) then
+if BUSES["IMI7000"] then
files {
MAME_DIR .. "src/devices/bus/imi7000/imi7000.cpp",
MAME_DIR .. "src/devices/bus/imi7000/imi7000.h",
@@ -1750,7 +2686,7 @@ end
--@src/devices/bus/intellec4/intellec4.h,BUSES["INTELLEC4"] = true
---------------------------------------------------
-if (BUSES["INTELLEC4"]~=null) then
+if BUSES["INTELLEC4"] then
files {
MAME_DIR .. "src/devices/bus/intellec4/insdatastor.cpp",
MAME_DIR .. "src/devices/bus/intellec4/insdatastor.h",
@@ -1766,10 +2702,57 @@ end
---------------------------------------------------
--
+--@src/devices/bus/interpro/keyboard/keyboard.h,BUSES["INTERPRO_KEYBOARD"] = true
+---------------------------------------------------
+
+if BUSES["INTERPRO_KEYBOARD"] then
+ files {
+ MAME_DIR .. "src/devices/bus/interpro/keyboard/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/keyboard/keyboard.h",
+ MAME_DIR .. "src/devices/bus/interpro/keyboard/hle.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/keyboard/hle.h",
+ MAME_DIR .. "src/devices/bus/interpro/keyboard/lle.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/keyboard/lle.h"
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/interpro/mouse/mouse.h,BUSES["INTERPRO_MOUSE"] = true
+---------------------------------------------------
+
+if BUSES["INTERPRO_MOUSE"] then
+ files {
+ MAME_DIR .. "src/devices/bus/interpro/mouse/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/mouse/mouse.h"
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/interpro/sr/sr.h,BUSES["INTERPRO_SR"] = true
+---------------------------------------------------
+
+if BUSES["INTERPRO_SR"] then
+ files {
+ MAME_DIR .. "src/devices/bus/interpro/sr/sr.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/sr/sr.h",
+ MAME_DIR .. "src/devices/bus/interpro/sr/sr_cards.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/sr/sr_cards.h",
+ MAME_DIR .. "src/devices/bus/interpro/sr/gt.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/sr/gt.h",
+ MAME_DIR .. "src/devices/bus/interpro/sr/edge.cpp",
+ MAME_DIR .. "src/devices/bus/interpro/sr/edge.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/intv/slot.h,BUSES["INTV"] = true
---------------------------------------------------
-if (BUSES["INTV"]~=null) then
+if BUSES["INTV"] then
files {
MAME_DIR .. "src/devices/bus/intv/slot.cpp",
MAME_DIR .. "src/devices/bus/intv/slot.h",
@@ -1788,7 +2771,7 @@ end
--@src/devices/bus/intv_ctrl/ctrl.h,BUSES["INTV_CTRL"] = true
---------------------------------------------------
-if (BUSES["INTV_CTRL"]~=null) then
+if BUSES["INTV_CTRL"] then
files {
MAME_DIR .. "src/devices/bus/intv_ctrl/ctrl.cpp",
MAME_DIR .. "src/devices/bus/intv_ctrl/ctrl.h",
@@ -1805,7 +2788,7 @@ end
--@src/devices/bus/isa/isa.h,BUSES["ISA"] = true
---------------------------------------------------
-if (BUSES["ISA"]~=null) then
+if BUSES["ISA"] then
files {
MAME_DIR .. "src/devices/bus/isa/isa.cpp",
MAME_DIR .. "src/devices/bus/isa/isa.h",
@@ -1990,7 +2973,7 @@ end
--@src/devices/bus/isbx/isbx.h,BUSES["ISBX"] = true
---------------------------------------------------
-if (BUSES["ISBX"]~=null) then
+if BUSES["ISBX"] then
files {
MAME_DIR .. "src/devices/bus/isbx/isbx.cpp",
MAME_DIR .. "src/devices/bus/isbx/isbx.h",
@@ -2006,7 +2989,7 @@ end
--@src/devices/bus/jakks_gamekey/slot.h,BUSES["JAKKS_GAMEKEY"] = true
---------------------------------------------------
-if (BUSES["JAKKS_GAMEKEY"]~=null) then
+if BUSES["JAKKS_GAMEKEY"] then
files {
MAME_DIR .. "src/devices/bus/jakks_gamekey/slot.cpp",
MAME_DIR .. "src/devices/bus/jakks_gamekey/slot.h",
@@ -2015,12 +2998,61 @@ if (BUSES["JAKKS_GAMEKEY"]~=null) then
}
end
+
+---------------------------------------------------
+--
+--@src/devices/bus/jvs/jvs.h,BUSES["JVS"] = true
+---------------------------------------------------
+
+if BUSES["JVS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/jvs/cyberlead.cpp",
+ MAME_DIR .. "src/devices/bus/jvs/cyberlead.h",
+ MAME_DIR .. "src/devices/bus/jvs/jvs.cpp",
+ MAME_DIR .. "src/devices/bus/jvs/jvs.h",
+ MAME_DIR .. "src/devices/bus/jvs/jvshle.cpp",
+ MAME_DIR .. "src/devices/bus/jvs/jvshle.h",
+ MAME_DIR .. "src/devices/bus/jvs/namcoio.cpp",
+ MAME_DIR .. "src/devices/bus/jvs/namcoio.h",
+ }
+
+ dependency {
+ { MAME_DIR .. "src/devices/bus/jvs/cyberlead.cpp", GEN_DIR .. "emu/layout/cyberlead.lh" },
+ }
+
+ custombuildtask {
+ layoutbuildtask("emu/layout", "cyberlead"),
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/kc/kc.h,BUSES["KC"] = true
+---------------------------------------------------
+
+if BUSES["KC"] then
+ files {
+ MAME_DIR .. "src/devices/bus/kc/kc.cpp",
+ MAME_DIR .. "src/devices/bus/kc/kc.h",
+ MAME_DIR .. "src/devices/bus/kc/d002.cpp",
+ MAME_DIR .. "src/devices/bus/kc/d002.h",
+ MAME_DIR .. "src/devices/bus/kc/d004.cpp",
+ MAME_DIR .. "src/devices/bus/kc/d004.h",
+ MAME_DIR .. "src/devices/bus/kc/ram.cpp",
+ MAME_DIR .. "src/devices/bus/kc/ram.h",
+ MAME_DIR .. "src/devices/bus/kc/rom.cpp",
+ MAME_DIR .. "src/devices/bus/kc/rom.h",
+ }
+end
+
+
---------------------------------------------------
--
--@src/devices/bus/keytronic/keytronic.h,BUSES["KEYTRONIC"] = true
---------------------------------------------------
-if (BUSES["KEYTRONIC"]~=null) then
+if BUSES["KEYTRONIC"] then
files {
MAME_DIR .. "src/devices/bus/keytronic/informer_kbd.cpp",
MAME_DIR .. "src/devices/bus/keytronic/informer_kbd.h",
@@ -2033,12 +3065,250 @@ if (BUSES["KEYTRONIC"]~=null) then
}
end
+
+---------------------------------------------------
+--
+--@src/devices/bus/kim1/kim1bus.h,BUSES["KIM1"] = true
+---------------------------------------------------
+
+if BUSES["KIM1"] then
+ files {
+ MAME_DIR .. "src/devices/bus/kim1/cards.cpp",
+ MAME_DIR .. "src/devices/bus/kim1/cards.h",
+ MAME_DIR .. "src/devices/bus/kim1/kim1bus.cpp",
+ MAME_DIR .. "src/devices/bus/kim1/kim1bus.h",
+ MAME_DIR .. "src/devices/bus/kim1/k1008_vismem.cpp",
+ MAME_DIR .. "src/devices/bus/kim1/k1008_vismem.h",
+ MAME_DIR .. "src/devices/bus/kim1/k1016_16k.cpp",
+ MAME_DIR .. "src/devices/bus/kim1/k1016_16k.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/lpci/pci.h,BUSES["LPCI"] = true
+---------------------------------------------------
+
+if BUSES["LPCI"] then
+ files {
+ MAME_DIR .. "src/devices/bus/lpci/pci.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/pci.h",
+ MAME_DIR .. "src/devices/bus/lpci/cirrus.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/cirrus.h",
+ MAME_DIR .. "src/devices/bus/lpci/i82371ab.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/i82371ab.h",
+ MAME_DIR .. "src/devices/bus/lpci/i82371sb.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/i82371sb.h",
+ MAME_DIR .. "src/devices/bus/lpci/i82439tx.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/i82439tx.h",
+ MAME_DIR .. "src/devices/bus/lpci/northbridge.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/northbridge.h",
+ MAME_DIR .. "src/devices/bus/lpci/southbridge.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/southbridge.h",
+ MAME_DIR .. "src/devices/bus/lpci/mpc105.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/mpc105.h",
+ MAME_DIR .. "src/devices/bus/lpci/vt82c505.cpp",
+ MAME_DIR .. "src/devices/bus/lpci/vt82c505.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/m5/slot.h,BUSES["M5"] = true
+---------------------------------------------------
+if BUSES["M5"] then
+ files {
+ MAME_DIR .. "src/devices/bus/m5/slot.cpp",
+ MAME_DIR .. "src/devices/bus/m5/slot.h",
+ MAME_DIR .. "src/devices/bus/m5/rom.cpp",
+ MAME_DIR .. "src/devices/bus/m5/rom.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/mackbd/mackbd.h,BUSES["MACKBD"] = true
+---------------------------------------------------
+
+if BUSES["MACKBD"] then
+ files {
+ MAME_DIR .. "src/devices/bus/mackbd/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/mackbd/keyboard.h",
+ MAME_DIR .. "src/devices/bus/mackbd/mackbd.cpp",
+ MAME_DIR .. "src/devices/bus/mackbd/mackbd.h",
+ MAME_DIR .. "src/devices/bus/mackbd/pluskbd.cpp",
+ MAME_DIR .. "src/devices/bus/mackbd/pluskbd.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/macpds/macpds.h,BUSES["MACPDS"] = true
+---------------------------------------------------
+if BUSES["MACPDS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/macpds/macpds.cpp",
+ MAME_DIR .. "src/devices/bus/macpds/macpds.h",
+ MAME_DIR .. "src/devices/bus/macpds/pds_tpdfpd.cpp",
+ MAME_DIR .. "src/devices/bus/macpds/pds_tpdfpd.h",
+ MAME_DIR .. "src/devices/bus/macpds/hyperdrive.cpp",
+ MAME_DIR .. "src/devices/bus/macpds/hyperdrive.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/mc10/mc10_cart.h,BUSES["MC10"] = true
+---------------------------------------------------
+if BUSES["MC10"] then
+ files {
+ MAME_DIR .. "src/devices/bus/mc10/mc10_cart.cpp",
+ MAME_DIR .. "src/devices/bus/mc10/mc10_cart.h",
+ MAME_DIR .. "src/devices/bus/mc10/mcx128.cpp",
+ MAME_DIR .. "src/devices/bus/mc10/mcx128.h",
+ MAME_DIR .. "src/devices/bus/mc10/multiports_ext.cpp",
+ MAME_DIR .. "src/devices/bus/mc10/multiports_ext.h",
+ MAME_DIR .. "src/devices/bus/mc10/pak.cpp",
+ MAME_DIR .. "src/devices/bus/mc10/pak.h",
+ MAME_DIR .. "src/devices/bus/mc10/ram.cpp",
+ MAME_DIR .. "src/devices/bus/mc10/ram.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/mc68000/sysbus.h,BUSES["MC68000_SYSBUS"] = true
+---------------------------------------------------
+
+if BUSES["MC68000_SYSBUS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/mc68000/sysbus.cpp",
+ MAME_DIR .. "src/devices/bus/mc68000/sysbus.h",
+ MAME_DIR .. "src/devices/bus/mc68000/cards.cpp",
+ MAME_DIR .. "src/devices/bus/mc68000/cards.h",
+ MAME_DIR .. "src/devices/bus/mc68000/floppy.cpp",
+ MAME_DIR .. "src/devices/bus/mc68000/floppy.h",
+ MAME_DIR .. "src/devices/bus/mc68000/ram.cpp",
+ MAME_DIR .. "src/devices/bus/mc68000/ram.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/megadrive/md_slot.h,BUSES["MEGADRIVE"] = true
+---------------------------------------------------
+
+if BUSES["MEGADRIVE"] then
+ files {
+ MAME_DIR .. "src/devices/bus/megadrive/md_slot.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/md_slot.h",
+ MAME_DIR .. "src/devices/bus/megadrive/md_carts.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/md_carts.h",
+ MAME_DIR .. "src/devices/bus/megadrive/eeprom.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/eeprom.h",
+ MAME_DIR .. "src/devices/bus/megadrive/ggenie.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/ggenie.h",
+ MAME_DIR .. "src/devices/bus/megadrive/jcart.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/jcart.h",
+ MAME_DIR .. "src/devices/bus/megadrive/rom.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/rom.h",
+ MAME_DIR .. "src/devices/bus/megadrive/sk.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/sk.h",
+ MAME_DIR .. "src/devices/bus/megadrive/stm95.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/stm95.h",
+ MAME_DIR .. "src/devices/bus/megadrive/svp.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/svp.h",
+ MAME_DIR .. "src/devices/bus/megadrive/titan.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/titan.h",
+ MAME_DIR .. "src/devices/bus/megadrive/tplay96.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/tplay96.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/megadrive/cart/slot.h,BUSES["MEGADRIVE_CART"] = true
+---------------------------------------------------
+
+if BUSES["MEGADRIVE_CART"] then
+ files {
+ MAME_DIR .. "src/devices/bus/megadrive/cart/action_replay.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/action_replay.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/avartisan.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/avartisan.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/eeprom.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/eeprom.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/everdrive.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/everdrive.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/gamtec.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/gamtec.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/jcart.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/jcart.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/options.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/options.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/mcpirate.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/mcpirate.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/miky.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/miky.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/multigame.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/multigame.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/rockworld.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/rockworld.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/rom.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/rom.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/segach.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/segach.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/sfteam.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/sfteam.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/smb.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/smb.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/smw64.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/smw64.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/slot.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/slot.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/sram.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/sram.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/ssf.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/ssf.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/t5740.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/t5740.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/tekkensp.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/tekkensp.h",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/xboy.cpp",
+ MAME_DIR .. "src/devices/bus/megadrive/cart/xboy.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/midi/midi.h,BUSES["MIDI"] = true
+---------------------------------------------------
+
+if BUSES["MIDI"] then
+ files {
+ MAME_DIR .. "src/devices/bus/midi/midi.cpp",
+ MAME_DIR .. "src/devices/bus/midi/midi.h",
+ MAME_DIR .. "src/devices/bus/midi/midiinport.cpp",
+ MAME_DIR .. "src/devices/bus/midi/midiinport.h",
+ MAME_DIR .. "src/devices/bus/midi/midioutport.cpp",
+ MAME_DIR .. "src/devices/bus/midi/midioutport.h",
+ }
+end
+
+
---------------------------------------------------
--
--@src/devices/bus/mpf1/slot.h,BUSES["MPF1"] = true
---------------------------------------------------
-if (BUSES["MPF1"]~=null) then
+if BUSES["MPF1"] then
files {
MAME_DIR .. "src/devices/bus/mpf1/slot.cpp",
MAME_DIR .. "src/devices/bus/mpf1/slot.h",
@@ -2059,12 +3329,30 @@ if (BUSES["MPF1"]~=null) then
}
end
+
+---------------------------------------------------
+--
+--@src/devices/bus/mononcol/slot.h,BUSES["MONONCOL"] = true
+---------------------------------------------------
+
+if BUSES["MONONCOL"] then
+ files {
+ MAME_DIR .. "src/devices/bus/mononcol/slot.cpp",
+ MAME_DIR .. "src/devices/bus/mononcol/slot.h",
+ MAME_DIR .. "src/devices/bus/mononcol/carts.cpp",
+ MAME_DIR .. "src/devices/bus/mononcol/carts.h",
+ MAME_DIR .. "src/devices/bus/mononcol/rom.cpp",
+ MAME_DIR .. "src/devices/bus/mononcol/rom.h",
+ }
+end
+
+
---------------------------------------------------
--
--@src/devices/bus/msx/ctrl/ctrl.h,BUSES["MSX_CTRL"] = true
---------------------------------------------------
-if (BUSES["MSX_CTRL"]~=null) then
+if BUSES["MSX_CTRL"] then
files {
MAME_DIR .. "src/devices/bus/msx/ctrl/ctrl.cpp",
MAME_DIR .. "src/devices/bus/msx/ctrl/ctrl.h",
@@ -2096,7 +3384,7 @@ end
--@src/devices/bus/msx/slot/slot.h,BUSES["MSX_SLOT"] = true
---------------------------------------------------
-if (BUSES["MSX_SLOT"]~=null) then
+if BUSES["MSX_SLOT"] then
files {
MAME_DIR .. "src/devices/bus/msx/slot/ax230.cpp",
MAME_DIR .. "src/devices/bus/msx/slot/ax230.h",
@@ -2232,10 +3520,25 @@ end
---------------------------------------------------
--
+--@src/devices/bus/mtu130/board.h,BUSES["MTU130"] = true
+---------------------------------------------------
+
+if BUSES["MTU130"] then
+ files {
+ MAME_DIR .. "src/devices/bus/mtu130/board.cpp",
+ MAME_DIR .. "src/devices/bus/mtu130/board.h",
+ MAME_DIR .. "src/devices/bus/mtu130/datamover.cpp",
+ MAME_DIR .. "src/devices/bus/mtu130/datamover.h",
+ }
+ end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/mtx/exp.h,BUSES["MTX"] = true
---------------------------------------------------
-if (BUSES["MTX"]~=null) then
+if BUSES["MTX"] then
files {
MAME_DIR .. "src/devices/bus/mtx/exp.cpp",
MAME_DIR .. "src/devices/bus/mtx/exp.h",
@@ -2250,12 +3553,48 @@ if (BUSES["MTX"]~=null) then
}
end
+
+---------------------------------------------------
+--
+--@src/devices/bus/multibus/multibus.h,BUSES["MULTIBUS"] = true
+---------------------------------------------------
+
+if BUSES["MULTIBUS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/multibus/multibus.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/multibus.h",
+ MAME_DIR .. "src/devices/bus/multibus/dsd5217.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/dsd5217.h",
+ MAME_DIR .. "src/devices/bus/multibus/isbc202.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/isbc202.h",
+ MAME_DIR .. "src/devices/bus/multibus/isbc8024.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/isbc8024.h",
+ MAME_DIR .. "src/devices/bus/multibus/cpuap.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/cpuap.h",
+ MAME_DIR .. "src/devices/bus/multibus/serad.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/serad.h",
+ MAME_DIR .. "src/devices/bus/multibus/labtam_3232.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/labtam_3232.h",
+ MAME_DIR .. "src/devices/bus/multibus/labtam_vducom.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/labtam_vducom.h",
+ MAME_DIR .. "src/devices/bus/multibus/labtam_z80sbc.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/labtam_z80sbc.h",
+ MAME_DIR .. "src/devices/bus/multibus/robotron_k7070.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/robotron_k7070.h",
+ MAME_DIR .. "src/devices/bus/multibus/robotron_k7071.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/robotron_k7071.h",
+ MAME_DIR .. "src/devices/bus/multibus/sun1.cpp",
+ MAME_DIR .. "src/devices/bus/multibus/sun1.h",
+ }
+end
+
+
---------------------------------------------------
--
--@src/devices/bus/mz80/mz80_exp.h,BUSES["MZ80"] = true
---------------------------------------------------
-if (BUSES["MZ80"]~=null) then
+if BUSES["MZ80"] then
files {
MAME_DIR .. "src/devices/bus/mz80/ar_romcard.cpp",
MAME_DIR .. "src/devices/bus/mz80/ar_romcard.h",
@@ -2274,1348 +3613,147 @@ if (BUSES["MZ80"]~=null) then
}
end
----------------------------------------------------
---
---@src/devices/bus/mc10/mc10_cart.h,BUSES["MC10"] = true
----------------------------------------------------
-if (BUSES["MC10"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/mc10/mc10_cart.cpp",
- MAME_DIR .. "src/devices/bus/mc10/mc10_cart.h",
- MAME_DIR .. "src/devices/bus/mc10/mcx128.cpp",
- MAME_DIR .. "src/devices/bus/mc10/mcx128.h",
- MAME_DIR .. "src/devices/bus/mc10/multiports_ext.cpp",
- MAME_DIR .. "src/devices/bus/mc10/multiports_ext.h",
- MAME_DIR .. "src/devices/bus/mc10/pak.cpp",
- MAME_DIR .. "src/devices/bus/mc10/pak.h",
- MAME_DIR .. "src/devices/bus/mc10/ram.cpp",
- MAME_DIR .. "src/devices/bus/mc10/ram.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/kc/kc.h,BUSES["KC"] = true
----------------------------------------------------
-
-if (BUSES["KC"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/kc/kc.cpp",
- MAME_DIR .. "src/devices/bus/kc/kc.h",
- MAME_DIR .. "src/devices/bus/kc/d002.cpp",
- MAME_DIR .. "src/devices/bus/kc/d002.h",
- MAME_DIR .. "src/devices/bus/kc/d004.cpp",
- MAME_DIR .. "src/devices/bus/kc/d004.h",
- MAME_DIR .. "src/devices/bus/kc/ram.cpp",
- MAME_DIR .. "src/devices/bus/kc/ram.h",
- MAME_DIR .. "src/devices/bus/kc/rom.cpp",
- MAME_DIR .. "src/devices/bus/kc/rom.h",
- }
-end
-
----------------------------------------------------
---
---@src/devices/bus/odyssey2/slot.h,BUSES["O2"] = true
----------------------------------------------------
-
-if (BUSES["O2"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/odyssey2/slot.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/slot.h",
- MAME_DIR .. "src/devices/bus/odyssey2/rom.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/rom.h",
- MAME_DIR .. "src/devices/bus/odyssey2/4in1.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/4in1.h",
- MAME_DIR .. "src/devices/bus/odyssey2/chess.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/chess.h",
- MAME_DIR .. "src/devices/bus/odyssey2/homecomp.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/homecomp.h",
- MAME_DIR .. "src/devices/bus/odyssey2/ktaa.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/ktaa.h",
- MAME_DIR .. "src/devices/bus/odyssey2/rally.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/rally.h",
- MAME_DIR .. "src/devices/bus/odyssey2/test.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/test.h",
- MAME_DIR .. "src/devices/bus/odyssey2/voice.cpp",
- MAME_DIR .. "src/devices/bus/odyssey2/voice.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/pasopia/pac2.h,BUSES["PASOPIA"] = true
----------------------------------------------------
-
-if (BUSES["PASOPIA"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/pasopia/pac2.cpp",
- MAME_DIR .. "src/devices/bus/pasopia/pac2.h",
- MAME_DIR .. "src/devices/bus/pasopia/pac2exp.cpp",
- MAME_DIR .. "src/devices/bus/pasopia/pac2exp.h",
- MAME_DIR .. "src/devices/bus/pasopia/rampac2.cpp",
- MAME_DIR .. "src/devices/bus/pasopia/rampac2.h",
- MAME_DIR .. "src/devices/bus/pasopia/rompac2.cpp",
- MAME_DIR .. "src/devices/bus/pasopia/rompac2.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/pc_joy/pc_joy.h,BUSES["PC_JOY"] = true
----------------------------------------------------
-
-if (BUSES["PC_JOY"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/pc_joy/pc_joy.cpp",
- MAME_DIR .. "src/devices/bus/pc_joy/pc_joy.h",
- MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_magnum6.cpp",
- MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_magnum6.h",
- MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_sw.cpp",
- MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_sw.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/pccard/pccard.h,BUSES["PCCARD"] = true
----------------------------------------------------
-
-if (BUSES["PCCARD"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/pccard/pccard.cpp",
- MAME_DIR .. "src/devices/bus/pccard/pccard.h",
- MAME_DIR .. "src/devices/bus/pccard/ataflash.cpp",
- MAME_DIR .. "src/devices/bus/pccard/ataflash.h",
- MAME_DIR .. "src/devices/bus/pccard/k573npu.cpp",
- MAME_DIR .. "src/devices/bus/pccard/k573npu.h",
- MAME_DIR .. "src/devices/bus/pccard/konami_dual.cpp",
- MAME_DIR .. "src/devices/bus/pccard/konami_dual.h",
- MAME_DIR .. "src/devices/bus/pccard/linflash.cpp",
- MAME_DIR .. "src/devices/bus/pccard/linflash.h",
- MAME_DIR .. "src/devices/bus/pccard/sram.cpp",
- MAME_DIR .. "src/devices/bus/pccard/sram.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/pc_kbd/pc_kbdc.h,BUSES["PC_KBD"] = true
----------------------------------------------------
-
-if (BUSES["PC_KBD"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/pc_kbd/pc_kbdc.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/pc_kbdc.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/keyboards.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/keyboards.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/cherry_mx1500.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/cherry_mx1500.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/ec1841.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/ec1841.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/iskr1030.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/iskr1030.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/keytro.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/keytro.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/msnat.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/msnat.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/pc83.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/pc83.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/pcat84.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/pcat84.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/pcxt83.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/pcxt83.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/pcat101.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/pcat101.h",
- MAME_DIR .. "src/devices/bus/pc_kbd/hle_mouse.cpp",
- MAME_DIR .. "src/devices/bus/pc_kbd/hle_mouse.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/pet/cass.h,BUSES["PET"] = true
---@src/devices/bus/pet/exp.h,BUSES["PET"] = true
---@src/devices/bus/pet/user.h,BUSES["PET"] = true
----------------------------------------------------
-
-if (BUSES["PET"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/pet/cass.cpp",
- MAME_DIR .. "src/devices/bus/pet/cass.h",
- MAME_DIR .. "src/devices/bus/pet/c2n.cpp",
- MAME_DIR .. "src/devices/bus/pet/c2n.h",
- MAME_DIR .. "src/devices/bus/pet/diag264_lb_tape.cpp",
- MAME_DIR .. "src/devices/bus/pet/diag264_lb_tape.h",
- MAME_DIR .. "src/devices/bus/pet/exp.cpp",
- MAME_DIR .. "src/devices/bus/pet/exp.h",
- MAME_DIR .. "src/devices/bus/pet/64k.cpp",
- MAME_DIR .. "src/devices/bus/pet/64k.h",
- MAME_DIR .. "src/devices/bus/pet/hsg.cpp",
- MAME_DIR .. "src/devices/bus/pet/hsg.h",
- MAME_DIR .. "src/devices/bus/pet/superpet.cpp",
- MAME_DIR .. "src/devices/bus/pet/superpet.h",
- MAME_DIR .. "src/devices/bus/pet/user.cpp",
- MAME_DIR .. "src/devices/bus/pet/user.h",
- MAME_DIR .. "src/devices/bus/pet/diag.cpp",
- MAME_DIR .. "src/devices/bus/pet/diag.h",
- MAME_DIR .. "src/devices/bus/pet/petuja.cpp",
- MAME_DIR .. "src/devices/bus/pet/petuja.h",
- MAME_DIR .. "src/devices/bus/pet/cb2snd.cpp",
- MAME_DIR .. "src/devices/bus/pet/cb2snd.h",
- MAME_DIR .. "src/devices/bus/pet/2joysnd.h",
- MAME_DIR .. "src/devices/bus/pet/2joysnd.cpp",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/plus4/exp.h,BUSES["PLUS4"] = true
---@src/devices/bus/plus4/user.h,BUSES["PLUS4"] = true
----------------------------------------------------
-
-if (BUSES["PLUS4"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/plus4/exp.cpp",
- MAME_DIR .. "src/devices/bus/plus4/exp.h",
- MAME_DIR .. "src/devices/bus/plus4/c1551.cpp",
- MAME_DIR .. "src/devices/bus/plus4/c1551.h",
- MAME_DIR .. "src/devices/bus/plus4/sid.cpp",
- MAME_DIR .. "src/devices/bus/plus4/sid.h",
- MAME_DIR .. "src/devices/bus/plus4/std.cpp",
- MAME_DIR .. "src/devices/bus/plus4/std.h",
- MAME_DIR .. "src/devices/bus/plus4/user.cpp",
- MAME_DIR .. "src/devices/bus/plus4/user.h",
- MAME_DIR .. "src/devices/bus/plus4/diag264_lb_user.cpp",
- MAME_DIR .. "src/devices/bus/plus4/diag264_lb_user.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/pofo/exp.h,BUSES["POFO"] = true
----------------------------------------------------
-
-if (BUSES["POFO"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/pofo/exp.cpp",
- MAME_DIR .. "src/devices/bus/pofo/exp.h",
- MAME_DIR .. "src/devices/bus/pofo/hpc101.cpp",
- MAME_DIR .. "src/devices/bus/pofo/hpc101.h",
- MAME_DIR .. "src/devices/bus/pofo/hpc102.cpp",
- MAME_DIR .. "src/devices/bus/pofo/hpc102.h",
- MAME_DIR .. "src/devices/bus/pofo/hpc104.cpp",
- MAME_DIR .. "src/devices/bus/pofo/hpc104.h",
- MAME_DIR .. "src/devices/bus/pofo/ccm.cpp",
- MAME_DIR .. "src/devices/bus/pofo/ccm.h",
- MAME_DIR .. "src/devices/bus/pofo/ram.cpp",
- MAME_DIR .. "src/devices/bus/pofo/ram.h",
- MAME_DIR .. "src/devices/bus/pofo/rom.cpp",
- MAME_DIR .. "src/devices/bus/pofo/rom.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/psion/honda/slot.h,BUSES["PSION_HONDA"] = true
----------------------------------------------------
-
-if (BUSES["PSION_HONDA"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/psion/honda/slot.cpp",
- MAME_DIR .. "src/devices/bus/psion/honda/slot.h",
- MAME_DIR .. "src/devices/bus/psion/honda/parallel.cpp",
- MAME_DIR .. "src/devices/bus/psion/honda/parallel.h",
- MAME_DIR .. "src/devices/bus/psion/honda/pclink.cpp",
- MAME_DIR .. "src/devices/bus/psion/honda/pclink.h",
- MAME_DIR .. "src/devices/bus/psion/honda/ssd.cpp",
- MAME_DIR .. "src/devices/bus/psion/honda/ssd.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/psion/module/slot.h,BUSES["PSION_MODULE"] = true
----------------------------------------------------
-
-if (BUSES["PSION_MODULE"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/psion/module/slot.cpp",
- MAME_DIR .. "src/devices/bus/psion/module/slot.h",
- MAME_DIR .. "src/devices/bus/psion/module/serpar.cpp",
- MAME_DIR .. "src/devices/bus/psion/module/serpar.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/psion/sibo/slot.h,BUSES["PSION_SIBO"] = true
----------------------------------------------------
-
-if (BUSES["PSION_SIBO"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/psion/sibo/slot.cpp",
- MAME_DIR .. "src/devices/bus/psion/sibo/slot.h",
- MAME_DIR .. "src/devices/bus/psion/sibo/3fax.cpp",
- MAME_DIR .. "src/devices/bus/psion/sibo/3fax.h",
- MAME_DIR .. "src/devices/bus/psion/sibo/3link.cpp",
- MAME_DIR .. "src/devices/bus/psion/sibo/3link.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/rc2014/rc2014.h,BUSES["RC2014"] = true
----------------------------------------------------
-
-if (BUSES["RC2014"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/rc2014/rc2014.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/rc2014.h",
- MAME_DIR .. "src/devices/bus/rc2014/cf.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/cf.h",
- MAME_DIR .. "src/devices/bus/rc2014/clock.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/clock.h",
- MAME_DIR .. "src/devices/bus/rc2014/edge.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/edge.h",
- MAME_DIR .. "src/devices/bus/rc2014/fdc.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/fdc.h",
- MAME_DIR .. "src/devices/bus/rc2014/ide.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/ide.h",
- MAME_DIR .. "src/devices/bus/rc2014/micro.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/micro.h",
- MAME_DIR .. "src/devices/bus/rc2014/modules.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/modules.h",
- MAME_DIR .. "src/devices/bus/rc2014/ram.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/ram.h",
- MAME_DIR .. "src/devices/bus/rc2014/rom.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/rom.h",
- MAME_DIR .. "src/devices/bus/rc2014/romram.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/romram.h",
- MAME_DIR .. "src/devices/bus/rc2014/rtc.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/rtc.h",
- MAME_DIR .. "src/devices/bus/rc2014/serial.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/serial.h",
- MAME_DIR .. "src/devices/bus/rc2014/sound_ym_ay.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/sound_ym_ay.h",
- MAME_DIR .. "src/devices/bus/rc2014/z180cpu.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/z180cpu.h",
- MAME_DIR .. "src/devices/bus/rc2014/z80cpu.cpp",
- MAME_DIR .. "src/devices/bus/rc2014/z80cpu.h",
- }
-end
-
----------------------------------------------------
---
---@src/devices/bus/s100/s100.h,BUSES["S100"] = true
----------------------------------------------------
-
-if (BUSES["S100"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/s100/s100.cpp",
- MAME_DIR .. "src/devices/bus/s100/s100.h",
- MAME_DIR .. "src/devices/bus/s100/am310.cpp",
- MAME_DIR .. "src/devices/bus/s100/am310.h",
- MAME_DIR .. "src/devices/bus/s100/ascsasi.cpp",
- MAME_DIR .. "src/devices/bus/s100/ascsasi.h",
- MAME_DIR .. "src/devices/bus/s100/dg640.cpp",
- MAME_DIR .. "src/devices/bus/s100/dg640.h",
- MAME_DIR .. "src/devices/bus/s100/dj2db.cpp",
- MAME_DIR .. "src/devices/bus/s100/dj2db.h",
- MAME_DIR .. "src/devices/bus/s100/djdma.cpp",
- MAME_DIR .. "src/devices/bus/s100/djdma.h",
- MAME_DIR .. "src/devices/bus/s100/mm65k16s.cpp",
- MAME_DIR .. "src/devices/bus/s100/mm65k16s.h",
- MAME_DIR .. "src/devices/bus/s100/nsmdsa.cpp",
- MAME_DIR .. "src/devices/bus/s100/nsmdsa.h",
- MAME_DIR .. "src/devices/bus/s100/nsmdsad.cpp",
- MAME_DIR .. "src/devices/bus/s100/nsmdsad.h",
- MAME_DIR .. "src/devices/bus/s100/poly16k.cpp",
- MAME_DIR .. "src/devices/bus/s100/poly16k.h",
- MAME_DIR .. "src/devices/bus/s100/polyfdc.cpp",
- MAME_DIR .. "src/devices/bus/s100/polyfdc.h",
- MAME_DIR .. "src/devices/bus/s100/polyvti.cpp",
- MAME_DIR .. "src/devices/bus/s100/polyvti.h",
- MAME_DIR .. "src/devices/bus/s100/seals8k.cpp",
- MAME_DIR .. "src/devices/bus/s100/seals8k.h",
- MAME_DIR .. "src/devices/bus/s100/vectordualmode.cpp",
- MAME_DIR .. "src/devices/bus/s100/vectordualmode.h",
- MAME_DIR .. "src/devices/bus/s100/wunderbus.cpp",
- MAME_DIR .. "src/devices/bus/s100/wunderbus.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/segaai/segaai_exp.h,BUSES["SEGAAI"] = true
----------------------------------------------------
-
-if (BUSES["SEGAAI"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/segaai/rom.cpp",
- MAME_DIR .. "src/devices/bus/segaai/rom.h",
- MAME_DIR .. "src/devices/bus/segaai/segaai_exp.cpp",
- MAME_DIR .. "src/devices/bus/segaai/segaai_exp.h",
- MAME_DIR .. "src/devices/bus/segaai/segaai_slot.cpp",
- MAME_DIR .. "src/devices/bus/segaai/segaai_slot.h",
- MAME_DIR .. "src/devices/bus/segaai/soundbox.cpp",
- MAME_DIR .. "src/devices/bus/segaai/soundbox.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/spc1000/exp.h,BUSES["SPC1000"] = true
----------------------------------------------------
-
-if (BUSES["SPC1000"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/spc1000/exp.cpp",
- MAME_DIR .. "src/devices/bus/spc1000/exp.h",
- MAME_DIR .. "src/devices/bus/spc1000/fdd.cpp",
- MAME_DIR .. "src/devices/bus/spc1000/fdd.h",
- MAME_DIR .. "src/devices/bus/spc1000/vdp.cpp",
- MAME_DIR .. "src/devices/bus/spc1000/vdp.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/ss50/interface.h,BUSES["SS50"] = true
----------------------------------------------------
-
-if (BUSES["SS50"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/ss50/interface.cpp",
- MAME_DIR .. "src/devices/bus/ss50/interface.h",
- MAME_DIR .. "src/devices/bus/ss50/dc5.cpp",
- MAME_DIR .. "src/devices/bus/ss50/dc5.h",
- MAME_DIR .. "src/devices/bus/ss50/mpc.cpp",
- MAME_DIR .. "src/devices/bus/ss50/mpc.h",
- MAME_DIR .. "src/devices/bus/ss50/mps.cpp",
- MAME_DIR .. "src/devices/bus/ss50/mps.h",
- MAME_DIR .. "src/devices/bus/ss50/mps2.cpp",
- MAME_DIR .. "src/devices/bus/ss50/mps2.h",
- MAME_DIR .. "src/devices/bus/ss50/mpt.cpp",
- MAME_DIR .. "src/devices/bus/ss50/mpt.h",
- MAME_DIR .. "src/devices/bus/ss50/piaide.cpp",
- MAME_DIR .. "src/devices/bus/ss50/piaide.h",
- }
-end
-
----------------------------------------------------
---
---@src/devices/bus/supracan/slot.h,BUSES["SUPRACAN"] = true
----------------------------------------------------
-
-if (BUSES["SUPRACAN"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/supracan/slot.cpp",
- MAME_DIR .. "src/devices/bus/supracan/slot.h",
- MAME_DIR .. "src/devices/bus/supracan/rom.cpp",
- MAME_DIR .. "src/devices/bus/supracan/rom.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/tiki100/exp.h,BUSES["TIKI100"] = true
----------------------------------------------------
-
-if (BUSES["TIKI100"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/tiki100/exp.cpp",
- MAME_DIR .. "src/devices/bus/tiki100/exp.h",
- MAME_DIR .. "src/devices/bus/tiki100/8088.cpp",
- MAME_DIR .. "src/devices/bus/tiki100/8088.h",
- MAME_DIR .. "src/devices/bus/tiki100/hdc.cpp",
- MAME_DIR .. "src/devices/bus/tiki100/hdc.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/tim011/exp.h,BUSES["TIM011"] = true
----------------------------------------------------
-
-if (BUSES["TIM011"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/tim011/exp.cpp",
- MAME_DIR .. "src/devices/bus/tim011/exp.h",
- MAME_DIR .. "src/devices/bus/tim011/aycard.cpp",
- MAME_DIR .. "src/devices/bus/tim011/aycard.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/tvc/tvc.h,BUSES["TVC"] = true
----------------------------------------------------
-
-if (BUSES["TVC"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/tvc/tvc.cpp",
- MAME_DIR .. "src/devices/bus/tvc/tvc.h",
- MAME_DIR .. "src/devices/bus/tvc/hbf.cpp",
- MAME_DIR .. "src/devices/bus/tvc/hbf.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vc4000/slot.h,BUSES["VC4000"] = true
----------------------------------------------------
-
-if (BUSES["VC4000"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vc4000/slot.cpp",
- MAME_DIR .. "src/devices/bus/vc4000/slot.h",
- MAME_DIR .. "src/devices/bus/vc4000/rom.cpp",
- MAME_DIR .. "src/devices/bus/vc4000/rom.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vcs/vcs_slot.h,BUSES["VCS"] = true
----------------------------------------------------
-
-if (BUSES["VCS"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vcs/vcs_slot.cpp",
- MAME_DIR .. "src/devices/bus/vcs/vcs_slot.h",
- MAME_DIR .. "src/devices/bus/vcs/rom.cpp",
- MAME_DIR .. "src/devices/bus/vcs/rom.h",
- MAME_DIR .. "src/devices/bus/vcs/compumat.cpp",
- MAME_DIR .. "src/devices/bus/vcs/compumat.h",
- MAME_DIR .. "src/devices/bus/vcs/dpc.cpp",
- MAME_DIR .. "src/devices/bus/vcs/dpc.h",
- MAME_DIR .. "src/devices/bus/vcs/harmony_melody.cpp",
- MAME_DIR .. "src/devices/bus/vcs/harmony_melody.h",
- MAME_DIR .. "src/devices/bus/vcs/scharger.cpp",
- MAME_DIR .. "src/devices/bus/vcs/scharger.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vcs_ctrl/ctrl.h,BUSES["VCS_CTRL"] = true
----------------------------------------------------
-
-if (BUSES["VCS_CTRL"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vcs_ctrl/ctrl.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/ctrl.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/cx85.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/cx85.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/joystick.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/joystick.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/joybooster.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/joybooster.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/keypad.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/keypad.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/lightpen.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/lightpen.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/mouse.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/mouse.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/paddles.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/paddles.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/trakball.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/trakball.h",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/wheel.cpp",
- MAME_DIR .. "src/devices/bus/vcs_ctrl/wheel.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vectrex/slot.h,BUSES["VECTREX"] = true
----------------------------------------------------
-
-if (BUSES["VECTREX"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vectrex/slot.cpp",
- MAME_DIR .. "src/devices/bus/vectrex/slot.h",
- MAME_DIR .. "src/devices/bus/vectrex/rom.cpp",
- MAME_DIR .. "src/devices/bus/vectrex/rom.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vic10/exp.h,BUSES["VIC10"] = true
----------------------------------------------------
-
-if (BUSES["VIC10"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vic10/exp.cpp",
- MAME_DIR .. "src/devices/bus/vic10/exp.h",
- MAME_DIR .. "src/devices/bus/vic10/multimax.cpp",
- MAME_DIR .. "src/devices/bus/vic10/multimax.h",
- MAME_DIR .. "src/devices/bus/vic10/std.cpp",
- MAME_DIR .. "src/devices/bus/vic10/std.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vic20/exp.h,BUSES["VIC20"] = true
---@src/devices/bus/vic20/user.h,BUSES["VIC20"] = true
----------------------------------------------------
-
-if (BUSES["VIC20"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vic20/exp.cpp",
- MAME_DIR .. "src/devices/bus/vic20/exp.h",
- MAME_DIR .. "src/devices/bus/vic20/fe3.cpp",
- MAME_DIR .. "src/devices/bus/vic20/fe3.h",
- MAME_DIR .. "src/devices/bus/vic20/megacart.cpp",
- MAME_DIR .. "src/devices/bus/vic20/megacart.h",
- MAME_DIR .. "src/devices/bus/vic20/std.cpp",
- MAME_DIR .. "src/devices/bus/vic20/std.h",
- MAME_DIR .. "src/devices/bus/vic20/vic1010.cpp",
- MAME_DIR .. "src/devices/bus/vic20/vic1010.h",
- MAME_DIR .. "src/devices/bus/vic20/vic1110.cpp",
- MAME_DIR .. "src/devices/bus/vic20/vic1110.h",
- MAME_DIR .. "src/devices/bus/vic20/vic1111.cpp",
- MAME_DIR .. "src/devices/bus/vic20/vic1111.h",
- MAME_DIR .. "src/devices/bus/vic20/vic1112.cpp",
- MAME_DIR .. "src/devices/bus/vic20/vic1112.h",
- MAME_DIR .. "src/devices/bus/vic20/vic1210.cpp",
- MAME_DIR .. "src/devices/bus/vic20/vic1210.h",
- MAME_DIR .. "src/devices/bus/vic20/videopak.cpp",
- MAME_DIR .. "src/devices/bus/vic20/videopak.h",
- MAME_DIR .. "src/devices/bus/vic20/speakeasy.cpp",
- MAME_DIR .. "src/devices/bus/vic20/speakeasy.h",
- MAME_DIR .. "src/devices/bus/vic20/user.cpp",
- MAME_DIR .. "src/devices/bus/vic20/user.h",
- MAME_DIR .. "src/devices/bus/vic20/4cga.cpp",
- MAME_DIR .. "src/devices/bus/vic20/4cga.h",
- MAME_DIR .. "src/devices/bus/vic20/vic1011.cpp",
- MAME_DIR .. "src/devices/bus/vic20/vic1011.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vidbrain/exp.h,BUSES["VIDBRAIN"] = true
----------------------------------------------------
-
-if (BUSES["VIDBRAIN"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vidbrain/exp.cpp",
- MAME_DIR .. "src/devices/bus/vidbrain/exp.h",
- MAME_DIR .. "src/devices/bus/vidbrain/std.cpp",
- MAME_DIR .. "src/devices/bus/vidbrain/std.h",
- MAME_DIR .. "src/devices/bus/vidbrain/comp_language.cpp",
- MAME_DIR .. "src/devices/bus/vidbrain/comp_language.h",
- MAME_DIR .. "src/devices/bus/vidbrain/info_manager.cpp",
- MAME_DIR .. "src/devices/bus/vidbrain/info_manager.h",
- MAME_DIR .. "src/devices/bus/vidbrain/money_minder.cpp",
- MAME_DIR .. "src/devices/bus/vidbrain/money_minder.h",
- MAME_DIR .. "src/devices/bus/vidbrain/timeshare.cpp",
- MAME_DIR .. "src/devices/bus/vidbrain/timeshare.h",
- }
-end
-
---------------------------------------------------
--
---@src/devices/bus/vip/byteio.h,BUSES["VIP"] = true
---@src/devices/bus/vip/exp.h,BUSES["VIP"] = true
----------------------------------------------------
-
-if (BUSES["VIP"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vip/byteio.cpp",
- MAME_DIR .. "src/devices/bus/vip/byteio.h",
- MAME_DIR .. "src/devices/bus/vip/vp620.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp620.h",
- MAME_DIR .. "src/devices/bus/vip/exp.cpp",
- MAME_DIR .. "src/devices/bus/vip/exp.h",
- MAME_DIR .. "src/devices/bus/vip/vp550.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp550.h",
- MAME_DIR .. "src/devices/bus/vip/vp570.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp570.h",
- MAME_DIR .. "src/devices/bus/vip/vp575.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp575.h",
- MAME_DIR .. "src/devices/bus/vip/vp585.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp585.h",
- MAME_DIR .. "src/devices/bus/vip/vp590.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp590.h",
- MAME_DIR .. "src/devices/bus/vip/vp595.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp595.h",
- MAME_DIR .. "src/devices/bus/vip/vp700.cpp",
- MAME_DIR .. "src/devices/bus/vip/vp700.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/vme/vme.h,BUSES["VME"] = true
----------------------------------------------------
-
-if (BUSES["VME"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vme/vme.cpp",
- MAME_DIR .. "src/devices/bus/vme/vme.h",
- MAME_DIR .. "src/devices/bus/vme/vme_cards.cpp",
- MAME_DIR .. "src/devices/bus/vme/vme_cards.h",
- MAME_DIR .. "src/devices/bus/vme/cp31.cpp",
- MAME_DIR .. "src/devices/bus/vme/cp31.h",
- MAME_DIR .. "src/devices/bus/vme/enp10.cpp",
- MAME_DIR .. "src/devices/bus/vme/enp10.h",
- MAME_DIR .. "src/devices/bus/vme/hcpu30.cpp",
- MAME_DIR .. "src/devices/bus/vme/hcpu30.h",
- MAME_DIR .. "src/devices/bus/vme/hk68v10.cpp",
- MAME_DIR .. "src/devices/bus/vme/hk68v10.h",
- MAME_DIR .. "src/devices/bus/vme/mvme120.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme120.h",
- MAME_DIR .. "src/devices/bus/vme/mvme147.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme147.h",
- MAME_DIR .. "src/devices/bus/vme/mvme180.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme180.h",
- MAME_DIR .. "src/devices/bus/vme/mvme181.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme181.h",
- MAME_DIR .. "src/devices/bus/vme/mvme187.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme187.h",
- MAME_DIR .. "src/devices/bus/vme/mvme327a.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme327a.h",
- MAME_DIR .. "src/devices/bus/vme/mvme328.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme328.h",
- MAME_DIR .. "src/devices/bus/vme/mvme350.cpp",
- MAME_DIR .. "src/devices/bus/vme/mvme350.h",
- MAME_DIR .. "src/devices/bus/vme/mzr8105.cpp",
- MAME_DIR .. "src/devices/bus/vme/mzr8105.h",
- MAME_DIR .. "src/devices/bus/vme/mzr8300.cpp",
- MAME_DIR .. "src/devices/bus/vme/mzr8300.h",
- MAME_DIR .. "src/devices/bus/vme/smvme2000.cpp",
- MAME_DIR .. "src/devices/bus/vme/smvme2000.h",
- MAME_DIR .. "src/devices/bus/vme/sys68k_cpu1.cpp",
- MAME_DIR .. "src/devices/bus/vme/sys68k_cpu1.h",
- MAME_DIR .. "src/devices/bus/vme/sys68k_cpu20.cpp",
- MAME_DIR .. "src/devices/bus/vme/sys68k_cpu20.h",
- MAME_DIR .. "src/devices/bus/vme/sys68k_cpu30.cpp",
- MAME_DIR .. "src/devices/bus/vme/sys68k_cpu30.h",
- MAME_DIR .. "src/devices/bus/vme/sys68k_iscsi.cpp",
- MAME_DIR .. "src/devices/bus/vme/sys68k_iscsi.h",
- MAME_DIR .. "src/devices/bus/vme/sys68k_isio.cpp",
- MAME_DIR .. "src/devices/bus/vme/sys68k_isio.h",
- MAME_DIR .. "src/devices/bus/vme/tp880v.cpp",
- MAME_DIR .. "src/devices/bus/vme/tp880v.h",
- MAME_DIR .. "src/devices/bus/vme/tp881v.cpp",
- MAME_DIR .. "src/devices/bus/vme/tp881v.h",
- MAME_DIR .. "src/devices/bus/vme/tsvme104.cpp",
- MAME_DIR .. "src/devices/bus/vme/tsvme104.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/wangpc/wangpc.h,BUSES["WANGPC"] = true
----------------------------------------------------
-
-if (BUSES["WANGPC"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/wangpc/wangpc.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/wangpc.h",
- MAME_DIR .. "src/devices/bus/wangpc/emb.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/emb.h",
- MAME_DIR .. "src/devices/bus/wangpc/lic.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/lic.h",
- MAME_DIR .. "src/devices/bus/wangpc/lvc.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/lvc.h",
- MAME_DIR .. "src/devices/bus/wangpc/mcc.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/mcc.h",
- MAME_DIR .. "src/devices/bus/wangpc/mvc.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/mvc.h",
- MAME_DIR .. "src/devices/bus/wangpc/rtc.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/rtc.h",
- MAME_DIR .. "src/devices/bus/wangpc/tig.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/tig.h",
- MAME_DIR .. "src/devices/bus/wangpc/wdc.cpp",
- MAME_DIR .. "src/devices/bus/wangpc/wdc.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/wysekbd/wysekbd.h,BUSES["WYSEKBD"] = true
----------------------------------------------------
-
-if (BUSES["WYSEKBD"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/wysekbd/wysegakb.cpp",
- MAME_DIR .. "src/devices/bus/wysekbd/wysegakb.h",
- MAME_DIR .. "src/devices/bus/wysekbd/wysekbd.cpp",
- MAME_DIR .. "src/devices/bus/wysekbd/wysekbd.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/z29_kbd/keyboard.h,BUSES["Z29_KBD"] = true
----------------------------------------------------
-
-if (BUSES["Z29_KBD"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/z29_kbd/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/z29_kbd/keyboard.h",
- MAME_DIR .. "src/devices/bus/z29_kbd/he191_3425.cpp",
- MAME_DIR .. "src/devices/bus/z29_kbd/he191_3425.h",
- MAME_DIR .. "src/devices/bus/z29_kbd/md_kbd.cpp",
- MAME_DIR .. "src/devices/bus/z29_kbd/md_kbd.h",
- }
-end
-
-
----------------------------------------------------
---
---@src/devices/bus/z88/z88.h,BUSES["Z88"] = true
----------------------------------------------------
-
-if (BUSES["Z88"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/z88/z88.cpp",
- MAME_DIR .. "src/devices/bus/z88/z88.h",
- MAME_DIR .. "src/devices/bus/z88/flash.cpp",
- MAME_DIR .. "src/devices/bus/z88/flash.h",
- MAME_DIR .. "src/devices/bus/z88/ram.cpp",
- MAME_DIR .. "src/devices/bus/z88/ram.h",
- MAME_DIR .. "src/devices/bus/z88/rom.cpp",
- MAME_DIR .. "src/devices/bus/z88/rom.h",
- }
-end
-
----------------------------------------------------
---
---@src/devices/bus/a2bus/a2bus.h,BUSES["A2BUS"] = true
+--@src/devices/bus/nabupc/option.h,BUSES["NABU"] = true
---------------------------------------------------
-
-if (BUSES["A2BUS"]~=null) then
+if BUSES["NABU"] then
files {
- MAME_DIR .. "src/devices/bus/a2bus/a2bus.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2bus.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2eauxslot.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2eauxslot.h",
- MAME_DIR .. "src/devices/bus/a2bus/4play.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/4play.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2alfam2.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2alfam2.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2applicard.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2applicard.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2arcadebd.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2arcadebd.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2cffa.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2cffa.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2corvus.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2corvus.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2diskiing.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2diskiing.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2dx1.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2dx1.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2echoii.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2echoii.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2eext80col.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2eext80col.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2eramworks3.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2eramworks3.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2estd80col.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2estd80col.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2hsscsi.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2hsscsi.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2ieee488.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2ieee488.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2iwm.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2iwm.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2mcms.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2mcms.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2memexp.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2memexp.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2midi.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2midi.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2mockingboard.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2mockingboard.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2parprn.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2parprn.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2pic.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2pic.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2sam.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2sam.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2scsi.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2scsi.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2sd.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2sd.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2softcard.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2softcard.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2ssc.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2ssc.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2superdrive.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2superdrive.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2swyft.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2swyft.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2themill.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2themill.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2thunderclock.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2thunderclock.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2ultraterm.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2ultraterm.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2videoterm.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2videoterm.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2vulcan.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2vulcan.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2wico_trackball.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2wico_trackball.h",
- MAME_DIR .. "src/devices/bus/a2bus/a2zipdrive.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/a2zipdrive.h",
- MAME_DIR .. "src/devices/bus/a2bus/ace2x00.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ace2x00.h",
- MAME_DIR .. "src/devices/bus/a2bus/agat_fdc.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/agat_fdc.h",
- MAME_DIR .. "src/devices/bus/a2bus/agat7langcard.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/agat7langcard.h",
- MAME_DIR .. "src/devices/bus/a2bus/agat7ports.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/agat7ports.h",
- MAME_DIR .. "src/devices/bus/a2bus/agat7ram.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/agat7ram.h",
- MAME_DIR .. "src/devices/bus/a2bus/agat840k_hle.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/agat840k_hle.h",
- MAME_DIR .. "src/devices/bus/a2bus/booti.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/booti.h",
- MAME_DIR .. "src/devices/bus/a2bus/byte8251.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/byte8251.h",
- MAME_DIR .. "src/devices/bus/a2bus/cards.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/cards.h",
- MAME_DIR .. "src/devices/bus/a2bus/ccs7710.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ccs7710.h",
- MAME_DIR .. "src/devices/bus/a2bus/cmsscsi.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/cmsscsi.h",
- MAME_DIR .. "src/devices/bus/a2bus/computereyes2.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/computereyes2.h",
- MAME_DIR .. "src/devices/bus/a2bus/corvfdc01.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/corvfdc01.h",
- MAME_DIR .. "src/devices/bus/a2bus/corvfdc02.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/corvfdc02.h",
- MAME_DIR .. "src/devices/bus/a2bus/excel9.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/excel9.h",
- MAME_DIR .. "src/devices/bus/a2bus/ezcgi.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ezcgi.h",
- MAME_DIR .. "src/devices/bus/a2bus/grafex.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/grafex.h",
- MAME_DIR .. "src/devices/bus/a2bus/grappler.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/grappler.h",
- MAME_DIR .. "src/devices/bus/a2bus/ibsap2.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ibsap2.h",
- MAME_DIR .. "src/devices/bus/a2bus/lancegs.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/lancegs.h",
- MAME_DIR .. "src/devices/bus/a2bus/laser128.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/laser128.h",
- MAME_DIR .. "src/devices/bus/a2bus/mouse.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/mouse.h",
- MAME_DIR .. "src/devices/bus/a2bus/nippelclock.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/nippelclock.h",
- MAME_DIR .. "src/devices/bus/a2bus/noisemaker.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/noisemaker.h",
- MAME_DIR .. "src/devices/bus/a2bus/pc_xporter.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/pc_xporter.h",
- MAME_DIR .. "src/devices/bus/a2bus/prodosromdrive.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/prodosromdrive.h",
- MAME_DIR .. "src/devices/bus/a2bus/q68.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/q68.h",
- MAME_DIR .. "src/devices/bus/a2bus/ramcard128k.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ramcard128k.h",
- MAME_DIR .. "src/devices/bus/a2bus/ramcard16k.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ramcard16k.h",
- MAME_DIR .. "src/devices/bus/a2bus/romcard.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/romcard.h",
- MAME_DIR .. "src/devices/bus/a2bus/sider.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/sider.h",
- MAME_DIR .. "src/devices/bus/a2bus/snesmax.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/snesmax.h",
- MAME_DIR .. "src/devices/bus/a2bus/softcard3.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/softcard3.h",
- MAME_DIR .. "src/devices/bus/a2bus/ssbapple.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ssbapple.h",
- MAME_DIR .. "src/devices/bus/a2bus/ssprite.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/ssprite.h",
- MAME_DIR .. "src/devices/bus/a2bus/suprterminal.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/suprterminal.h",
- MAME_DIR .. "src/devices/bus/a2bus/timemasterho.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/timemasterho.h",
- MAME_DIR .. "src/devices/bus/a2bus/titan3plus2.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/titan3plus2.h",
- MAME_DIR .. "src/devices/bus/a2bus/transwarp.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/transwarp.h",
- MAME_DIR .. "src/devices/bus/a2bus/uniprint.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/uniprint.h",
- MAME_DIR .. "src/devices/bus/a2bus/uthernet.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/uthernet.h",
- MAME_DIR .. "src/devices/bus/a2bus/vistaa800.cpp",
- MAME_DIR .. "src/devices/bus/a2bus/vistaa800.h",
+ MAME_DIR .. "src/devices/bus/nabupc/adapter.cpp",
+ MAME_DIR .. "src/devices/bus/nabupc/adapter.h",
+ MAME_DIR .. "src/devices/bus/nabupc/fdc.cpp",
+ MAME_DIR .. "src/devices/bus/nabupc/fdc.h",
+ MAME_DIR .. "src/devices/bus/nabupc/hdd.cpp",
+ MAME_DIR .. "src/devices/bus/nabupc/hdd.h",
+ MAME_DIR .. "src/devices/bus/nabupc/option.cpp",
+ MAME_DIR .. "src/devices/bus/nabupc/option.h",
+ MAME_DIR .. "src/devices/bus/nabupc/rs232.cpp",
+ MAME_DIR .. "src/devices/bus/nabupc/rs232.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/a2gameio/gameio.h,BUSES["A2GAMEIO"] = true
----------------------------------------------------
-
-if (BUSES["A2GAMEIO"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/a2gameio/brightpen.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/brightpen.h",
- MAME_DIR .. "src/devices/bus/a2gameio/computereyes.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/computereyes.h",
- MAME_DIR .. "src/devices/bus/a2gameio/gameio.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/gameio.h",
- MAME_DIR .. "src/devices/bus/a2gameio/joystick.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/joystick.h",
- MAME_DIR .. "src/devices/bus/a2gameio/joyport.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/joyport.h",
- MAME_DIR .. "src/devices/bus/a2gameio/joyport_paddles.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/joyport_paddles.h",
- MAME_DIR .. "src/devices/bus/a2gameio/paddles.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/paddles.h",
- MAME_DIR .. "src/devices/bus/a2gameio/gizmo.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/gizmo.h",
- MAME_DIR .. "src/devices/bus/a2gameio/wico_joystick.cpp",
- MAME_DIR .. "src/devices/bus/a2gameio/wico_joystick.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/a2kbd/a2kbd.h,BUSES["A2KBD"] = true
+--@src/devices/bus/nasbus/nasbus.h,BUSES["NASBUS"] = true
---------------------------------------------------
-if (BUSES["A2KBD"]~=null) then
+if BUSES["NASBUS"] then
files {
- MAME_DIR .. "src/devices/bus/a2kbd/a2kbd.cpp",
- MAME_DIR .. "src/devices/bus/a2kbd/a2kbd.h",
- MAME_DIR .. "src/devices/bus/a2kbd/am100kbd.cpp",
- MAME_DIR .. "src/devices/bus/a2kbd/am100kbd.h",
- MAME_DIR .. "src/devices/bus/a2kbd/ivelultrkb.cpp",
- MAME_DIR .. "src/devices/bus/a2kbd/ivelultrkb.h",
- MAME_DIR .. "src/devices/bus/a2kbd/kb200.cpp",
- MAME_DIR .. "src/devices/bus/a2kbd/kb200.h",
- MAME_DIR .. "src/devices/bus/a2kbd/nkbd.cpp",
- MAME_DIR .. "src/devices/bus/a2kbd/nkbd.h",
- MAME_DIR .. "src/devices/bus/a2kbd/tk10.cpp",
- MAME_DIR .. "src/devices/bus/a2kbd/tk10.h",
- MAME_DIR .. "src/devices/bus/a2kbd/videnh2.cpp",
- MAME_DIR .. "src/devices/bus/a2kbd/videnh2.h",
+ MAME_DIR .. "src/devices/bus/nasbus/nasbus.cpp",
+ MAME_DIR .. "src/devices/bus/nasbus/nasbus.h",
+ MAME_DIR .. "src/devices/bus/nasbus/cards.cpp",
+ MAME_DIR .. "src/devices/bus/nasbus/cards.h",
+ MAME_DIR .. "src/devices/bus/nasbus/avc.cpp",
+ MAME_DIR .. "src/devices/bus/nasbus/avc.h",
+ MAME_DIR .. "src/devices/bus/nasbus/floppy.cpp",
+ MAME_DIR .. "src/devices/bus/nasbus/floppy.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/nscsi/cd.h,BUSES["NSCSI"] = true
---@src/devices/bus/nscsi/devices.h,BUSES["NSCSI"] = true
---@src/devices/bus/nscsi/hd.h,BUSES["NSCSI"] = true
---@src/devices/bus/nscsi/s1410.h,BUSES["NSCSI"] = true
----------------------------------------------------
-
-if (BUSES["NSCSI"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/nscsi/applecd.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/applecd.h",
- MAME_DIR .. "src/devices/bus/nscsi/cd.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cd.h",
- MAME_DIR .. "src/devices/bus/nscsi/cdd2000.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cdd2000.h",
- MAME_DIR .. "src/devices/bus/nscsi/cdrn820s.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cdrn820s.h",
- MAME_DIR .. "src/devices/bus/nscsi/cdu75s.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cdu75s.h",
- MAME_DIR .. "src/devices/bus/nscsi/cdu415.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cdu415.h",
- MAME_DIR .. "src/devices/bus/nscsi/cdu561.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cdu561.h",
- MAME_DIR .. "src/devices/bus/nscsi/cfp1080s.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cfp1080s.h",
- MAME_DIR .. "src/devices/bus/nscsi/crd254sh.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/crd254sh.h",
- MAME_DIR .. "src/devices/bus/nscsi/cw7501.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/cw7501.h",
- MAME_DIR .. "src/devices/bus/nscsi/devices.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/devices.h",
- MAME_DIR .. "src/devices/bus/nscsi/dtc510.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/dtc510.h",
- MAME_DIR .. "src/devices/bus/nscsi/hd.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/hd.h",
- MAME_DIR .. "src/devices/bus/nscsi/pc8801_30.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/pc8801_30.h",
- MAME_DIR .. "src/devices/bus/nscsi/pc98_hd.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/pc98_hd.h",
- MAME_DIR .. "src/devices/bus/nscsi/s1410.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/s1410.h",
- MAME_DIR .. "src/devices/bus/nscsi/smoc501.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/smoc501.h",
- MAME_DIR .. "src/devices/bus/nscsi/tape.cpp",
- MAME_DIR .. "src/devices/bus/nscsi/tape.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/nubus/nubus.h,BUSES["NUBUS"] = true
+--@src/devices/bus/nec_fdd/pc80s31k.h,BUSES["NEC_FDD"] = true
---------------------------------------------------
-if (BUSES["NUBUS"]~=null) then
+if BUSES["NEC_FDD"] then
files {
- MAME_DIR .. "src/devices/bus/nubus/cards.cpp",
- MAME_DIR .. "src/devices/bus/nubus/cards.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_48gc.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_48gc.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_cb264.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_cb264.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_vikbw.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_vikbw.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_specpdq.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_specpdq.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_m2hires.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_m2hires.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_spec8.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_spec8.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_radiustpd.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_radiustpd.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_m2video.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_m2video.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_asntmc3b.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_asntmc3b.h",
- MAME_DIR .. "src/devices/bus/nubus/nubus_image.cpp",
- MAME_DIR .. "src/devices/bus/nubus/nubus_image.h",
- MAME_DIR .. "src/devices/bus/nubus/8lc.cpp",
- MAME_DIR .. "src/devices/bus/nubus/8lc.h",
- MAME_DIR .. "src/devices/bus/nubus/bootbug.cpp",
- MAME_DIR .. "src/devices/bus/nubus/bootbug.h",
- MAME_DIR .. "src/devices/bus/nubus/quadralink.cpp",
- MAME_DIR .. "src/devices/bus/nubus/quadralink.h",
- MAME_DIR .. "src/devices/bus/nubus/laserview.cpp",
- MAME_DIR .. "src/devices/bus/nubus/laserview.h",
- MAME_DIR .. "src/devices/bus/nubus/enetnbtp.cpp",
- MAME_DIR .. "src/devices/bus/nubus/enetnbtp.h",
- MAME_DIR .. "src/devices/bus/nubus/enetlc.cpp",
- MAME_DIR .. "src/devices/bus/nubus/enetlc.h",
- MAME_DIR .. "src/devices/bus/nubus/supermac.cpp",
- MAME_DIR .. "src/devices/bus/nubus/supermac.h",
- MAME_DIR .. "src/devices/bus/nubus/thunder4gx.cpp",
- MAME_DIR .. "src/devices/bus/nubus/thunder4gx.h",
- MAME_DIR .. "src/devices/bus/nubus/pds30_cb264.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pds30_cb264.h",
- MAME_DIR .. "src/devices/bus/nubus/pds30_procolor816.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pds30_procolor816.h",
- MAME_DIR .. "src/devices/bus/nubus/pds30_sigmalview.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pds30_sigmalview.h",
- MAME_DIR .. "src/devices/bus/nubus/pds30_30hr.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pds30_30hr.h",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/cards.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/cards.h",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/duodock.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/duodock.h",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/ethernetudock.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/ethernetudock.h",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/floppydock.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/floppydock.h",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/pwrbkduo.cpp",
- MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/pwrbkduo.h",
+ MAME_DIR .. "src/devices/bus/nec_fdd/pc80s31k.cpp",
+ MAME_DIR .. "src/devices/bus/nec_fdd/pc80s31k.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/centronics/ctronics.h,BUSES["CENTRONICS"] = true
----------------------------------------------------
-
-if (BUSES["CENTRONICS"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/centronics/adaptator.cpp",
- MAME_DIR .. "src/devices/bus/centronics/adaptator.h",
- MAME_DIR .. "src/devices/bus/centronics/ctronics.cpp",
- MAME_DIR .. "src/devices/bus/centronics/ctronics.h",
- MAME_DIR .. "src/devices/bus/centronics/chessmec.cpp",
- MAME_DIR .. "src/devices/bus/centronics/chessmec.h",
- MAME_DIR .. "src/devices/bus/centronics/comxpl80.cpp",
- MAME_DIR .. "src/devices/bus/centronics/comxpl80.h",
- MAME_DIR .. "src/devices/bus/centronics/covox.cpp",
- MAME_DIR .. "src/devices/bus/centronics/covox.h",
- MAME_DIR .. "src/devices/bus/centronics/digiblst.cpp",
- MAME_DIR .. "src/devices/bus/centronics/digiblst.h",
- MAME_DIR .. "src/devices/bus/centronics/dsjoy.cpp",
- MAME_DIR .. "src/devices/bus/centronics/dsjoy.h",
- MAME_DIR .. "src/devices/bus/centronics/epson_ex800.cpp",
- MAME_DIR .. "src/devices/bus/centronics/epson_ex800.h",
- MAME_DIR .. "src/devices/bus/centronics/epson_fx80.cpp",
- MAME_DIR .. "src/devices/bus/centronics/epson_fx80.h",
- MAME_DIR .. "src/devices/bus/centronics/epson_lx800.cpp",
- MAME_DIR .. "src/devices/bus/centronics/epson_lx800.h",
- MAME_DIR .. "src/devices/bus/centronics/epson_lx810l.cpp",
- MAME_DIR .. "src/devices/bus/centronics/epson_lx810l.h",
- MAME_DIR .. "src/devices/bus/centronics/epson_rx80.cpp",
- MAME_DIR .. "src/devices/bus/centronics/epson_rx80.h",
- MAME_DIR .. "src/devices/bus/centronics/hasp_savquest.cpp",
- MAME_DIR .. "src/devices/bus/centronics/hasp_savquest.h",
- MAME_DIR .. "src/devices/bus/centronics/mz1p16.cpp",
- MAME_DIR .. "src/devices/bus/centronics/mz1p16.h",
- MAME_DIR .. "src/devices/bus/centronics/nec_p72.cpp",
- MAME_DIR .. "src/devices/bus/centronics/nec_p72.h",
- MAME_DIR .. "src/devices/bus/centronics/nlq401.cpp",
- MAME_DIR .. "src/devices/bus/centronics/nlq401.h",
- MAME_DIR .. "src/devices/bus/centronics/printer.cpp",
- MAME_DIR .. "src/devices/bus/centronics/printer.h",
- MAME_DIR .. "src/devices/bus/centronics/samdac.cpp",
- MAME_DIR .. "src/devices/bus/centronics/samdac.h",
- MAME_DIR .. "src/devices/bus/centronics/smartboard.cpp",
- MAME_DIR .. "src/devices/bus/centronics/smartboard.h",
- MAME_DIR .. "src/devices/bus/centronics/spjoy.cpp",
- MAME_DIR .. "src/devices/bus/centronics/spjoy.h",
- }
-
- dependency {
- { MAME_DIR .. "src/devices/bus/centronics/epson_ex800.cpp", GEN_DIR .. "emu/layout/ex800.lh" },
- { MAME_DIR .. "src/devices/bus/centronics/epson_lx800.cpp", GEN_DIR .. "emu/layout/lx800.lh" },
- { MAME_DIR .. "src/devices/bus/centronics/epson_lx810l.cpp", GEN_DIR .. "emu/layout/lx800.lh" },
- { MAME_DIR .. "src/devices/bus/centronics/smartboard.cpp", GEN_DIR .. "emu/layout/smartboard.lh" },
- }
-
- custombuildtask {
- layoutbuildtask("emu/layout", "ex800"),
- layoutbuildtask("emu/layout", "lx800"),
- layoutbuildtask("emu/layout", "smartboard"),
- }
-end
---------------------------------------------------
--
---@src/devices/bus/rs232/rs232.h,BUSES["RS232"] = true
+--@src/devices/bus/neogeo/slot.h,BUSES["NEOGEO"] = true
---------------------------------------------------
-if (BUSES["RS232"]~=null) then
+if BUSES["NEOGEO"] then
files {
- MAME_DIR .. "src/devices/bus/rs232/exorterm.cpp",
- MAME_DIR .. "src/devices/bus/rs232/exorterm.h",
- MAME_DIR .. "src/devices/bus/rs232/heath_h19.cpp",
- MAME_DIR .. "src/devices/bus/rs232/heath_h19.h",
- MAME_DIR .. "src/devices/bus/rs232/hlemouse.cpp",
- MAME_DIR .. "src/devices/bus/rs232/hlemouse.h",
- MAME_DIR .. "src/devices/bus/rs232/ie15.cpp",
- MAME_DIR .. "src/devices/bus/rs232/ie15.h",
- MAME_DIR .. "src/devices/bus/rs232/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/rs232/keyboard.h",
- MAME_DIR .. "src/devices/bus/rs232/loopback.cpp",
- MAME_DIR .. "src/devices/bus/rs232/loopback.h",
- MAME_DIR .. "src/devices/bus/rs232/mboardd.cpp",
- MAME_DIR .. "src/devices/bus/rs232/mboardd.h",
- MAME_DIR .. "src/devices/bus/rs232/nss_tvinterface.cpp",
- MAME_DIR .. "src/devices/bus/rs232/nss_tvinterface.h",
- MAME_DIR .. "src/devices/bus/rs232/null_modem.cpp",
- MAME_DIR .. "src/devices/bus/rs232/null_modem.h",
- MAME_DIR .. "src/devices/bus/rs232/patchbox.cpp",
- MAME_DIR .. "src/devices/bus/rs232/patchbox.h",
- MAME_DIR .. "src/devices/bus/rs232/printer.cpp",
- MAME_DIR .. "src/devices/bus/rs232/printer.h",
- MAME_DIR .. "src/devices/bus/rs232/pty.cpp",
- MAME_DIR .. "src/devices/bus/rs232/pty.h",
- MAME_DIR .. "src/devices/bus/rs232/rs232.cpp",
- MAME_DIR .. "src/devices/bus/rs232/rs232.h",
- MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.cpp",
- MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.h",
- MAME_DIR .. "src/devices/bus/rs232/scorpion.cpp",
- MAME_DIR .. "src/devices/bus/rs232/scorpion.h",
- MAME_DIR .. "src/devices/bus/rs232/sun_kbd.cpp",
- MAME_DIR .. "src/devices/bus/rs232/sun_kbd.h",
- MAME_DIR .. "src/devices/bus/rs232/swtpc8212.cpp",
- MAME_DIR .. "src/devices/bus/rs232/swtpc8212.h",
- MAME_DIR .. "src/devices/bus/rs232/teletex800.cpp",
- MAME_DIR .. "src/devices/bus/rs232/teletex800.h",
- MAME_DIR .. "src/devices/bus/rs232/terminal.cpp",
- MAME_DIR .. "src/devices/bus/rs232/terminal.h",
- MAME_DIR .. "src/devices/bus/rs232/votraxtnt.cpp",
- MAME_DIR .. "src/devices/bus/rs232/votraxtnt.h",
- MAME_DIR .. "src/devices/bus/rs232/xvd701.cpp",
- MAME_DIR .. "src/devices/bus/rs232/xvd701.h",
- }
-
- dependency {
- { MAME_DIR .. "src/devices/bus/rs232/teletex800.cpp", GEN_DIR .. "emu/layout/teletex800.lh" },
- }
-
- custombuildtask {
- layoutbuildtask("emu/layout", "teletex800"),
+ MAME_DIR .. "src/devices/bus/neogeo/slot.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/slot.h",
+ MAME_DIR .. "src/devices/bus/neogeo/carts.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/carts.h",
+ MAME_DIR .. "src/devices/bus/neogeo/rom.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/rom.h",
+ MAME_DIR .. "src/devices/bus/neogeo/fatfury2.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/fatfury2.h",
+ MAME_DIR .. "src/devices/bus/neogeo/kof98.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/kof98.h",
+ MAME_DIR .. "src/devices/bus/neogeo/mslugx.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/mslugx.h",
+ MAME_DIR .. "src/devices/bus/neogeo/cmc.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/cmc.h",
+ MAME_DIR .. "src/devices/bus/neogeo/sma.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/sma.h",
+ MAME_DIR .. "src/devices/bus/neogeo/pcm2.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/pcm2.h",
+ MAME_DIR .. "src/devices/bus/neogeo/kof2k2.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/kof2k2.h",
+ MAME_DIR .. "src/devices/bus/neogeo/pvc.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/pvc.h",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_cthd.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_cthd.h",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_misc.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_misc.h",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_svc.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_svc.h",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k2.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k2.h",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k3.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k3.h",
+ MAME_DIR .. "src/devices/bus/neogeo/sbp.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/sbp.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_fatfury2.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_fatfury2.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_kof98.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_kof98.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_mslugx.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_mslugx.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_cmc.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_cmc.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_sma.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_sma.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_pcm2.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_pcm2.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k2.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k2.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_pvc.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_pvc.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_cthd.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_cthd.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k3bl.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k3bl.h",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_kof10th.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/boot_kof10th.h",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_misc.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo/prot_misc.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/midi/midi.h,BUSES["MIDI"] = true
----------------------------------------------------
-
-if (BUSES["MIDI"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/midi/midi.cpp",
- MAME_DIR .. "src/devices/bus/midi/midi.h",
- MAME_DIR .. "src/devices/bus/midi/midiinport.cpp",
- MAME_DIR .. "src/devices/bus/midi/midiinport.h",
- MAME_DIR .. "src/devices/bus/midi/midioutport.cpp",
- MAME_DIR .. "src/devices/bus/midi/midioutport.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/lpci/pci.h,BUSES["LPCI"] = true
+--@src/devices/bus/neogeo_ctrl/ctrl.h,BUSES["NEOGEO_CTRL"] = true
---------------------------------------------------
-if (BUSES["LPCI"]~=null) then
+if BUSES["NEOGEO_CTRL"] then
files {
- MAME_DIR .. "src/devices/bus/lpci/pci.cpp",
- MAME_DIR .. "src/devices/bus/lpci/pci.h",
- MAME_DIR .. "src/devices/bus/lpci/cirrus.cpp",
- MAME_DIR .. "src/devices/bus/lpci/cirrus.h",
- MAME_DIR .. "src/devices/bus/lpci/i82371ab.cpp",
- MAME_DIR .. "src/devices/bus/lpci/i82371ab.h",
- MAME_DIR .. "src/devices/bus/lpci/i82371sb.cpp",
- MAME_DIR .. "src/devices/bus/lpci/i82371sb.h",
- MAME_DIR .. "src/devices/bus/lpci/i82439tx.cpp",
- MAME_DIR .. "src/devices/bus/lpci/i82439tx.h",
- MAME_DIR .. "src/devices/bus/lpci/northbridge.cpp",
- MAME_DIR .. "src/devices/bus/lpci/northbridge.h",
- MAME_DIR .. "src/devices/bus/lpci/southbridge.cpp",
- MAME_DIR .. "src/devices/bus/lpci/southbridge.h",
- MAME_DIR .. "src/devices/bus/lpci/mpc105.cpp",
- MAME_DIR .. "src/devices/bus/lpci/mpc105.h",
- MAME_DIR .. "src/devices/bus/lpci/vt82c505.cpp",
- MAME_DIR .. "src/devices/bus/lpci/vt82c505.h",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/ctrl.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/ctrl.h",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/joystick.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/joystick.h",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/mahjong.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/mahjong.h",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/dial.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/dial.h",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/irrmaze.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/irrmaze.h",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/kizuna4p.cpp",
+ MAME_DIR .. "src/devices/bus/neogeo_ctrl/kizuna4p.h",
}
end
@@ -3624,7 +3762,7 @@ end
--@src/devices/bus/nes/nes_slot.h,BUSES["NES"] = true
---------------------------------------------------
-if (BUSES["NES"]~=null) then
+if BUSES["NES"] then
files {
MAME_DIR .. "src/devices/bus/nes/nes_slot.cpp",
MAME_DIR .. "src/devices/bus/nes/nes_slot.h",
@@ -3750,7 +3888,7 @@ end
--@src/devices/bus/nes_ctrl/zapper_sensor.h,BUSES["NES_CTRL"] = true
---------------------------------------------------
-if (BUSES["NES_CTRL"]~=null) then
+if BUSES["NES_CTRL"] then
files {
MAME_DIR .. "src/devices/bus/nes_ctrl/ctrl.cpp",
MAME_DIR .. "src/devices/bus/nes_ctrl/ctrl.h",
@@ -3811,1002 +3949,1111 @@ if (BUSES["NES_CTRL"]~=null) then
}
end
+
---------------------------------------------------
--
---@src/devices/bus/sdk85/memexp.h,BUSES["SDK85"] = true
+--@src/devices/bus/newbrain/exp.h,BUSES["NEWBRAIN"] = true
---------------------------------------------------
-if (BUSES["SDK85"]~=null) then
+if BUSES["NEWBRAIN"] then
files {
- MAME_DIR .. "src/devices/bus/sdk85/memexp.cpp",
- MAME_DIR .. "src/devices/bus/sdk85/memexp.h",
- MAME_DIR .. "src/devices/bus/sdk85/i8755.cpp",
- MAME_DIR .. "src/devices/bus/sdk85/i8755.h",
+ MAME_DIR .. "src/devices/bus/newbrain/exp.cpp",
+ MAME_DIR .. "src/devices/bus/newbrain/exp.h",
+ MAME_DIR .. "src/devices/bus/newbrain/eim.cpp",
+ MAME_DIR .. "src/devices/bus/newbrain/eim.h",
+ MAME_DIR .. "src/devices/bus/newbrain/fdc.cpp",
+ MAME_DIR .. "src/devices/bus/newbrain/fdc.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/snes/snes_slot.h,BUSES["SNES"] = true
+--@src/devices/bus/nscsi/cd.h,BUSES["NSCSI"] = true
+--@src/devices/bus/nscsi/devices.h,BUSES["NSCSI"] = true
+--@src/devices/bus/nscsi/hd.h,BUSES["NSCSI"] = true
+--@src/devices/bus/nscsi/s1410.h,BUSES["NSCSI"] = true
---------------------------------------------------
-if (BUSES["SNES"]~=null) then
+if BUSES["NSCSI"] then
files {
- MAME_DIR .. "src/devices/bus/snes/snes_slot.cpp",
- MAME_DIR .. "src/devices/bus/snes/snes_slot.h",
- MAME_DIR .. "src/devices/bus/snes/snes_carts.cpp",
- MAME_DIR .. "src/devices/bus/snes/snes_carts.h",
- MAME_DIR .. "src/devices/bus/snes/bsx.cpp",
- MAME_DIR .. "src/devices/bus/snes/bsx.h",
- MAME_DIR .. "src/devices/bus/snes/event.cpp",
- MAME_DIR .. "src/devices/bus/snes/event.h",
- MAME_DIR .. "src/devices/bus/snes/profighter.cpp",
- MAME_DIR .. "src/devices/bus/snes/profighter.h",
- MAME_DIR .. "src/devices/bus/snes/rom.cpp",
- MAME_DIR .. "src/devices/bus/snes/rom.h",
- MAME_DIR .. "src/devices/bus/snes/rom21.cpp",
- MAME_DIR .. "src/devices/bus/snes/rom21.h",
- MAME_DIR .. "src/devices/bus/snes/sa1.cpp",
- MAME_DIR .. "src/devices/bus/snes/sa1.h",
- MAME_DIR .. "src/devices/bus/snes/sdd1.cpp",
- MAME_DIR .. "src/devices/bus/snes/sdd1.h",
- MAME_DIR .. "src/devices/bus/snes/sfx.cpp",
- MAME_DIR .. "src/devices/bus/snes/sfx.h",
- MAME_DIR .. "src/devices/bus/snes/sgb.cpp",
- MAME_DIR .. "src/devices/bus/snes/sgb.h",
- MAME_DIR .. "src/devices/bus/snes/spc7110.cpp",
- MAME_DIR .. "src/devices/bus/snes/spc7110.h",
- MAME_DIR .. "src/devices/bus/snes/st018.cpp",
- MAME_DIR .. "src/devices/bus/snes/st018.h",
- MAME_DIR .. "src/devices/bus/snes/sufami.cpp",
- MAME_DIR .. "src/devices/bus/snes/sufami.h",
- MAME_DIR .. "src/devices/bus/snes/upd.cpp",
- MAME_DIR .. "src/devices/bus/snes/upd.h",
+ MAME_DIR .. "src/devices/bus/nscsi/applecd.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/applecd.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cd.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cd.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cdd2000.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cdd2000.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cdrn820s.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cdrn820s.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cdu75s.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cdu75s.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cdu415.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cdu415.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cdu561.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cdu561.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cfp1080s.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cfp1080s.h",
+ MAME_DIR .. "src/devices/bus/nscsi/crd254sh.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/crd254sh.h",
+ MAME_DIR .. "src/devices/bus/nscsi/cw7501.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/cw7501.h",
+ MAME_DIR .. "src/devices/bus/nscsi/devices.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/devices.h",
+ MAME_DIR .. "src/devices/bus/nscsi/dtc510.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/dtc510.h",
+ MAME_DIR .. "src/devices/bus/nscsi/hd.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/hd.h",
+ MAME_DIR .. "src/devices/bus/nscsi/pc8801_30.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/pc8801_30.h",
+ MAME_DIR .. "src/devices/bus/nscsi/pc98_hd.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/pc98_hd.h",
+ MAME_DIR .. "src/devices/bus/nscsi/s1410.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/s1410.h",
+ MAME_DIR .. "src/devices/bus/nscsi/smoc501.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/smoc501.h",
+ MAME_DIR .. "src/devices/bus/nscsi/tape.cpp",
+ MAME_DIR .. "src/devices/bus/nscsi/tape.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/snes_ctrl/ctrl.h,BUSES["SNES_CTRL"] = true
+--@src/devices/bus/nubus/nubus.h,BUSES["NUBUS"] = true
---------------------------------------------------
-if (BUSES["SNES_CTRL"]~=null) then
+if BUSES["NUBUS"] then
files {
- MAME_DIR .. "src/devices/bus/snes_ctrl/ctrl.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/ctrl.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/bcbattle.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/bcbattle.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/joypad.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/joypad.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/miracle.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/miracle.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/mouse.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/mouse.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/multitap.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/multitap.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/pachinko.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/pachinko.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/sscope.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/sscope.h",
- MAME_DIR .. "src/devices/bus/snes_ctrl/twintap.cpp",
- MAME_DIR .. "src/devices/bus/snes_ctrl/twintap.h",
+ MAME_DIR .. "src/devices/bus/nubus/cards.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/cards.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_48gc.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_48gc.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_cb264.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_cb264.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_vikbw.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_vikbw.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_specpdq.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_specpdq.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_m2hires.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_m2hires.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_spec8.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_spec8.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_radiustpd.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_radiustpd.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_m2video.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_m2video.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_asntmc3b.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_asntmc3b.h",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_image.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/nubus_image.h",
+ MAME_DIR .. "src/devices/bus/nubus/8lc.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/8lc.h",
+ MAME_DIR .. "src/devices/bus/nubus/bootbug.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/bootbug.h",
+ MAME_DIR .. "src/devices/bus/nubus/quadralink.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/quadralink.h",
+ MAME_DIR .. "src/devices/bus/nubus/laserview.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/laserview.h",
+ MAME_DIR .. "src/devices/bus/nubus/enetnbtp.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/enetnbtp.h",
+ MAME_DIR .. "src/devices/bus/nubus/enetlc.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/enetlc.h",
+ MAME_DIR .. "src/devices/bus/nubus/supermac.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/supermac.h",
+ MAME_DIR .. "src/devices/bus/nubus/thunder4gx.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/thunder4gx.h",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_cb264.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_cb264.h",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_procolor816.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_procolor816.h",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_sigmalview.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_sigmalview.h",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_30hr.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pds30_30hr.h",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/cards.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/cards.h",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/duodock.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/duodock.h",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/ethernetudock.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/ethernetudock.h",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/floppydock.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/floppydock.h",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/pwrbkduo.cpp",
+ MAME_DIR .. "src/devices/bus/nubus/pwrbkduo/pwrbkduo.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/vboy/slot.h,BUSES["VBOY"] = true
+--@src/devices/bus/odyssey2/slot.h,BUSES["O2"] = true
---------------------------------------------------
-if (BUSES["VBOY"]~=null) then
+
+if BUSES["O2"] then
files {
- MAME_DIR .. "src/devices/bus/vboy/slot.cpp",
- MAME_DIR .. "src/devices/bus/vboy/slot.h",
- MAME_DIR .. "src/devices/bus/vboy/rom.cpp",
- MAME_DIR .. "src/devices/bus/vboy/rom.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/slot.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/slot.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/rom.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/rom.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/4in1.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/4in1.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/chess.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/chess.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/homecomp.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/homecomp.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/ktaa.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/ktaa.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/rally.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/rally.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/test.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/test.h",
+ MAME_DIR .. "src/devices/bus/odyssey2/voice.cpp",
+ MAME_DIR .. "src/devices/bus/odyssey2/voice.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/megadrive/md_slot.h,BUSES["MEGADRIVE"] = true
+--@src/devices/bus/oricext/oricext.h,BUSES["ORICEXT"] = true
+---------------------------------------------------
+if BUSES["ORICEXT"] then
+ files {
+ MAME_DIR .. "src/devices/bus/oricext/oricext.cpp",
+ MAME_DIR .. "src/devices/bus/oricext/oricext.h",
+ MAME_DIR .. "src/devices/bus/oricext/jasmin.cpp",
+ MAME_DIR .. "src/devices/bus/oricext/jasmin.h",
+ MAME_DIR .. "src/devices/bus/oricext/microdisc.cpp",
+ MAME_DIR .. "src/devices/bus/oricext/microdisc.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/pasopia/pac2.h,BUSES["PASOPIA"] = true
---------------------------------------------------
-if (BUSES["MEGADRIVE"]~=null) then
+if BUSES["PASOPIA"] then
files {
- MAME_DIR .. "src/devices/bus/megadrive/md_slot.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/md_slot.h",
- MAME_DIR .. "src/devices/bus/megadrive/md_carts.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/md_carts.h",
- MAME_DIR .. "src/devices/bus/megadrive/eeprom.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/eeprom.h",
- MAME_DIR .. "src/devices/bus/megadrive/ggenie.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/ggenie.h",
- MAME_DIR .. "src/devices/bus/megadrive/jcart.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/jcart.h",
- MAME_DIR .. "src/devices/bus/megadrive/rom.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/rom.h",
- MAME_DIR .. "src/devices/bus/megadrive/sk.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/sk.h",
- MAME_DIR .. "src/devices/bus/megadrive/stm95.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/stm95.h",
- MAME_DIR .. "src/devices/bus/megadrive/svp.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/svp.h",
- MAME_DIR .. "src/devices/bus/megadrive/titan.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/titan.h",
- MAME_DIR .. "src/devices/bus/megadrive/tplay96.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/tplay96.h",
+ MAME_DIR .. "src/devices/bus/pasopia/pac2.cpp",
+ MAME_DIR .. "src/devices/bus/pasopia/pac2.h",
+ MAME_DIR .. "src/devices/bus/pasopia/pac2exp.cpp",
+ MAME_DIR .. "src/devices/bus/pasopia/pac2exp.h",
+ MAME_DIR .. "src/devices/bus/pasopia/rampac2.cpp",
+ MAME_DIR .. "src/devices/bus/pasopia/rampac2.h",
+ MAME_DIR .. "src/devices/bus/pasopia/rompac2.cpp",
+ MAME_DIR .. "src/devices/bus/pasopia/rompac2.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/megadrive/cart/slot.h,BUSES["MEGADRIVE_CART"] = true
+--@src/devices/bus/pc_joy/pc_joy.h,BUSES["PC_JOY"] = true
---------------------------------------------------
-if (BUSES["MEGADRIVE_CART"]~=null) then
+if BUSES["PC_JOY"] then
files {
- MAME_DIR .. "src/devices/bus/megadrive/cart/action_replay.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/action_replay.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/avartisan.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/avartisan.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/eeprom.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/eeprom.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/everdrive.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/everdrive.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/gamtec.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/gamtec.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/jcart.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/jcart.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/options.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/options.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/mcpirate.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/mcpirate.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/miky.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/miky.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/multigame.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/multigame.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/rockworld.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/rockworld.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/rom.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/rom.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/segach.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/segach.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/sfteam.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/sfteam.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/smb.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/smb.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/smw64.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/smw64.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/slot.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/slot.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/sram.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/sram.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/ssf.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/ssf.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/t5740.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/t5740.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/tekkensp.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/tekkensp.h",
- MAME_DIR .. "src/devices/bus/megadrive/cart/xboy.cpp",
- MAME_DIR .. "src/devices/bus/megadrive/cart/xboy.h",
+ MAME_DIR .. "src/devices/bus/pc_joy/pc_joy.cpp",
+ MAME_DIR .. "src/devices/bus/pc_joy/pc_joy.h",
+ MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_magnum6.cpp",
+ MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_magnum6.h",
+ MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_sw.cpp",
+ MAME_DIR .. "src/devices/bus/pc_joy/pc_joy_sw.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/mononcol/slot.h,BUSES["MONONCOL"] = true
+--@src/devices/bus/pc_kbd/pc_kbdc.h,BUSES["PC_KBD"] = true
---------------------------------------------------
-if (BUSES["MONONCOL"]~=null) then
+if BUSES["PC_KBD"] then
files {
- MAME_DIR .. "src/devices/bus/mononcol/slot.cpp",
- MAME_DIR .. "src/devices/bus/mononcol/slot.h",
- MAME_DIR .. "src/devices/bus/mononcol/carts.cpp",
- MAME_DIR .. "src/devices/bus/mononcol/carts.h",
- MAME_DIR .. "src/devices/bus/mononcol/rom.cpp",
- MAME_DIR .. "src/devices/bus/mononcol/rom.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pc_kbdc.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pc_kbdc.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/keyboards.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/keyboards.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/cherry_mx1500.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/cherry_mx1500.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/ec1841.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/ec1841.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/iskr1030.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/iskr1030.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/keytro.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/keytro.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/msnat.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/msnat.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pc83.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pc83.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pcat84.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pcat84.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pcxt83.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pcxt83.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pcat101.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/pcat101.h",
+ MAME_DIR .. "src/devices/bus/pc_kbd/hle_mouse.cpp",
+ MAME_DIR .. "src/devices/bus/pc_kbd/hle_mouse.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/neogeo/slot.h,BUSES["NEOGEO"] = true
+--@src/devices/bus/pc1512/mouse.h,BUSES["PC1512"] = true
---------------------------------------------------
-if (BUSES["NEOGEO"]~=null) then
+if BUSES["PC1512"] then
files {
- MAME_DIR .. "src/devices/bus/neogeo/slot.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/slot.h",
- MAME_DIR .. "src/devices/bus/neogeo/carts.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/carts.h",
- MAME_DIR .. "src/devices/bus/neogeo/rom.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/rom.h",
- MAME_DIR .. "src/devices/bus/neogeo/fatfury2.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/fatfury2.h",
- MAME_DIR .. "src/devices/bus/neogeo/kof98.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/kof98.h",
- MAME_DIR .. "src/devices/bus/neogeo/mslugx.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/mslugx.h",
- MAME_DIR .. "src/devices/bus/neogeo/cmc.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/cmc.h",
- MAME_DIR .. "src/devices/bus/neogeo/sma.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/sma.h",
- MAME_DIR .. "src/devices/bus/neogeo/pcm2.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/pcm2.h",
- MAME_DIR .. "src/devices/bus/neogeo/kof2k2.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/kof2k2.h",
- MAME_DIR .. "src/devices/bus/neogeo/pvc.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/pvc.h",
- MAME_DIR .. "src/devices/bus/neogeo/boot_cthd.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/boot_cthd.h",
- MAME_DIR .. "src/devices/bus/neogeo/boot_misc.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/boot_misc.h",
- MAME_DIR .. "src/devices/bus/neogeo/boot_svc.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/boot_svc.h",
- MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k2.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k2.h",
- MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k3.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/boot_kof2k3.h",
- MAME_DIR .. "src/devices/bus/neogeo/sbp.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/sbp.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_fatfury2.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_fatfury2.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_kof98.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_kof98.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_mslugx.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_mslugx.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_cmc.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_cmc.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_sma.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_sma.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_pcm2.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_pcm2.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k2.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k2.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_pvc.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_pvc.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_cthd.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_cthd.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k3bl.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_kof2k3bl.h",
- MAME_DIR .. "src/devices/bus/neogeo/boot_kof10th.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/boot_kof10th.h",
- MAME_DIR .. "src/devices/bus/neogeo/prot_misc.cpp",
- MAME_DIR .. "src/devices/bus/neogeo/prot_misc.h",
+ MAME_DIR .. "src/devices/bus/pc1512/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/pc1512/mouse.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/neogeo_ctrl/ctrl.h,BUSES["NEOGEO_CTRL"] = true
+--@src/devices/bus/pc8801/pc8801_exp.h,BUSES["PC8801"] = true
---------------------------------------------------
-if (BUSES["NEOGEO_CTRL"]~=null) then
+if BUSES["PC8801"] then
files {
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/ctrl.cpp",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/ctrl.h",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/joystick.cpp",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/joystick.h",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/mahjong.cpp",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/mahjong.h",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/dial.cpp",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/dial.h",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/irrmaze.cpp",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/irrmaze.h",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/kizuna4p.cpp",
- MAME_DIR .. "src/devices/bus/neogeo_ctrl/kizuna4p.h",
+ MAME_DIR .. "src/devices/bus/pc8801/gsx8800.cpp",
+ MAME_DIR .. "src/devices/bus/pc8801/gsx8800.h",
+ MAME_DIR .. "src/devices/bus/pc8801/pc8801_23.cpp",
+ MAME_DIR .. "src/devices/bus/pc8801/pc8801_23.h",
+ MAME_DIR .. "src/devices/bus/pc8801/pc8801_31.cpp",
+ MAME_DIR .. "src/devices/bus/pc8801/pc8801_31.h",
+ MAME_DIR .. "src/devices/bus/pc8801/pc8801_exp.cpp",
+ MAME_DIR .. "src/devices/bus/pc8801/pc8801_exp.h",
+ MAME_DIR .. "src/devices/bus/pc8801/pcg8100.cpp",
+ MAME_DIR .. "src/devices/bus/pc8801/pcg8100.h",
+ MAME_DIR .. "src/devices/bus/pc8801/jmbx1.cpp",
+ MAME_DIR .. "src/devices/bus/pc8801/jmbx1.h",
+ MAME_DIR .. "src/devices/bus/pc8801/hmb20.cpp",
+ MAME_DIR .. "src/devices/bus/pc8801/hmb20.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/sat_ctrl/ctrl.h,BUSES["SAT_CTRL"] = true
+--@src/devices/bus/pc98_54simm/slot.h,BUSES["PC98_54SIMM"] = true
---------------------------------------------------
-if (BUSES["SAT_CTRL"]~=null) then
+if BUSES["PC98_54SIMM"] then
files {
- MAME_DIR .. "src/devices/bus/sat_ctrl/ctrl.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/ctrl.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/analog.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/analog.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/joy.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/joy.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/joy_md.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/joy_md.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/keybd.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/keybd.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/mouse.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/mouse.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/multitap.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/multitap.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/pointer.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/pointer.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/racing.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/racing.h",
- MAME_DIR .. "src/devices/bus/sat_ctrl/segatap.cpp",
- MAME_DIR .. "src/devices/bus/sat_ctrl/segatap.h",
+ MAME_DIR .. "src/devices/bus/pc98_54simm/options.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_54simm/options.h",
+ MAME_DIR .. "src/devices/bus/pc98_54simm/simm.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_54simm/simm.h",
+ MAME_DIR .. "src/devices/bus/pc98_54simm/slot.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_54simm/slot.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/saturn/sat_slot.h,BUSES["SATURN"] = true
+--@src/devices/bus/pc98_61simm/slot.h,BUSES["PC98_61SIMM"] = true
---------------------------------------------------
-if (BUSES["SATURN"]~=null) then
+if BUSES["PC98_61SIMM"] then
files {
- MAME_DIR .. "src/devices/bus/saturn/sat_slot.cpp",
- MAME_DIR .. "src/devices/bus/saturn/sat_slot.h",
- MAME_DIR .. "src/devices/bus/saturn/bram.cpp",
- MAME_DIR .. "src/devices/bus/saturn/bram.h",
- MAME_DIR .. "src/devices/bus/saturn/dram.cpp",
- MAME_DIR .. "src/devices/bus/saturn/dram.h",
- MAME_DIR .. "src/devices/bus/saturn/rom.cpp",
- MAME_DIR .. "src/devices/bus/saturn/rom.h",
+ MAME_DIR .. "src/devices/bus/pc98_61simm/options.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_61simm/options.h",
+ MAME_DIR .. "src/devices/bus/pc98_61simm/simm.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_61simm/simm.h",
+ MAME_DIR .. "src/devices/bus/pc98_61simm/slot.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_61simm/slot.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/sega8/sega8_slot.h,BUSES["SEGA8"] = true
+--@src/devices/bus/pc98_cbus/slot.h,BUSES["PC98_CBUS"] = true
---------------------------------------------------
-if (BUSES["SEGA8"]~=null) then
+if BUSES["PC98_CBUS"] then
files {
- MAME_DIR .. "src/devices/bus/sega8/sega8_slot.cpp",
- MAME_DIR .. "src/devices/bus/sega8/sega8_slot.h",
- MAME_DIR .. "src/devices/bus/sega8/rom.cpp",
- MAME_DIR .. "src/devices/bus/sega8/rom.h",
- MAME_DIR .. "src/devices/bus/sega8/ccatch.cpp",
- MAME_DIR .. "src/devices/bus/sega8/ccatch.h",
- MAME_DIR .. "src/devices/bus/sega8/mgear.cpp",
- MAME_DIR .. "src/devices/bus/sega8/mgear.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/amd98.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/amd98.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2dd.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2dd.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2hd.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2hd.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/lgy98.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/lgy98.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/lha201.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/lha201.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/mif201.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/mif201.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/mpu_pc98.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/mpu_pc98.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/options.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/options.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_02.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_02.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_14.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_14.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_26.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_26.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_27.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_27.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_55.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_55.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_86.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_86.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_118.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_118.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/sb16_ct2720.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/sb16_ct2720.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/slot.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/slot.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/sound_orchestra.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/sound_orchestra.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/sound.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/sound.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/speakboard.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/speakboard.h",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/wavestar.cpp",
+ MAME_DIR .. "src/devices/bus/pc98_cbus/wavestar.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/sg1000_exp/sg1000exp.h,BUSES["SG1000_EXP"] = true
+--@src/devices/bus/pccard/pccard.h,BUSES["PCCARD"] = true
---------------------------------------------------
-if (BUSES["SG1000_EXP"]~=null) then
+if BUSES["PCCARD"] then
files {
- MAME_DIR .. "src/devices/bus/sg1000_exp/fm_unit.cpp",
- MAME_DIR .. "src/devices/bus/sg1000_exp/fm_unit.h",
- MAME_DIR .. "src/devices/bus/sg1000_exp/kblink.cpp",
- MAME_DIR .. "src/devices/bus/sg1000_exp/kblink.h",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sg1000exp.cpp",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sg1000exp.h",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100.cpp",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100.h",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100prn.cpp",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100prn.h",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sp400.cpp",
- MAME_DIR .. "src/devices/bus/sg1000_exp/sp400.h",
+ MAME_DIR .. "src/devices/bus/pccard/pccard.cpp",
+ MAME_DIR .. "src/devices/bus/pccard/pccard.h",
+ MAME_DIR .. "src/devices/bus/pccard/ataflash.cpp",
+ MAME_DIR .. "src/devices/bus/pccard/ataflash.h",
+ MAME_DIR .. "src/devices/bus/pccard/k573npu.cpp",
+ MAME_DIR .. "src/devices/bus/pccard/k573npu.h",
+ MAME_DIR .. "src/devices/bus/pccard/konami_dual.cpp",
+ MAME_DIR .. "src/devices/bus/pccard/konami_dual.h",
+ MAME_DIR .. "src/devices/bus/pccard/linflash.cpp",
+ MAME_DIR .. "src/devices/bus/pccard/linflash.h",
+ MAME_DIR .. "src/devices/bus/pccard/sram.cpp",
+ MAME_DIR .. "src/devices/bus/pccard/sram.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/sms_ctrl/smsctrl.h,BUSES["SMS_CTRL"] = true
+--@src/devices/bus/pce/pce_slot.h,BUSES["PCE"] = true
+---------------------------------------------------
+if BUSES["PCE"] then
+ files {
+ MAME_DIR .. "src/devices/bus/pce/pce_slot.cpp",
+ MAME_DIR .. "src/devices/bus/pce/pce_slot.h",
+ MAME_DIR .. "src/devices/bus/pce/pce_rom.cpp",
+ MAME_DIR .. "src/devices/bus/pce/pce_rom.h",
+ MAME_DIR .. "src/devices/bus/pce/pce_scdsys.cpp",
+ MAME_DIR .. "src/devices/bus/pce/pce_scdsys.h",
+ MAME_DIR .. "src/devices/bus/pce/pce_acard.cpp",
+ MAME_DIR .. "src/devices/bus/pce/pce_acard.h",
+ }
+end
+
+---------------------------------------------------
+--
+--@src/devices/bus/pce_ctrl/pcectrl.h,BUSES["PCE_CTRL"] = true
---------------------------------------------------
-if (BUSES["SMS_CTRL"]~=null) then
+if BUSES["PCE_CTRL"] then
files {
- MAME_DIR .. "src/devices/bus/sms_ctrl/controllers.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/controllers.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/diypaddle.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/diypaddle.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/hypershot.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/hypershot.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/graphic.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/graphic.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/joypad.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/joypad.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/lphaser.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/lphaser.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/md6bt.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/md6bt.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/mdpad.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/mdpad.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/mouse.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/mouse.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/multitap.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/multitap.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/paddle.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/paddle.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/rfu.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/rfu.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/rs232adapt.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/rs232adapt.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/smsctrl.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/smsctrl.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/sports.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/sports.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/sportsjp.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/sportsjp.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/teamplayer.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/teamplayer.h",
- MAME_DIR .. "src/devices/bus/sms_ctrl/xe1ap.cpp",
- MAME_DIR .. "src/devices/bus/sms_ctrl/xe1ap.h",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/pcectrl.cpp",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/pcectrl.h",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/joypad2.cpp",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/joypad2.h",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/joypad6.cpp",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/joypad6.h",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/mouse.h",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/multitap.cpp",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/multitap.h",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/pachinko.cpp",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/pachinko.h",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/xhe3.cpp",
+ MAME_DIR .. "src/devices/bus/pce_ctrl/xhe3.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/sms_exp/smsexp.h,BUSES["SMS_EXP"] = true
+--@src/devices/bus/pci/pci_slot.h,BUSES["PCI"] = true
---------------------------------------------------
-if (BUSES["SMS_EXP"]~=null) then
+if BUSES["PCI"] then
files {
- MAME_DIR .. "src/devices/bus/sms_exp/smsexp.cpp",
- MAME_DIR .. "src/devices/bus/sms_exp/smsexp.h",
- MAME_DIR .. "src/devices/bus/sms_exp/gender.cpp",
- MAME_DIR .. "src/devices/bus/sms_exp/gender.h",
+ MAME_DIR .. "src/devices/bus/pci/pci_slot.cpp",
+ MAME_DIR .. "src/devices/bus/pci/pci_slot.h",
+ MAME_DIR .. "src/devices/bus/pci/aha2940au.cpp",
+ MAME_DIR .. "src/devices/bus/pci/aha2940au.h",
+ MAME_DIR .. "src/devices/bus/pci/audiowerk2.cpp",
+ MAME_DIR .. "src/devices/bus/pci/audiowerk2.h",
+ MAME_DIR .. "src/devices/bus/pci/clgd5446.cpp",
+ MAME_DIR .. "src/devices/bus/pci/clgd5446.h",
+ MAME_DIR .. "src/devices/bus/pci/clgd546x_laguna.cpp",
+ MAME_DIR .. "src/devices/bus/pci/clgd546x_laguna.h",
+ MAME_DIR .. "src/devices/bus/pci/ds2416.cpp",
+ MAME_DIR .. "src/devices/bus/pci/ds2416.h",
+ MAME_DIR .. "src/devices/bus/pci/ess_maestro.cpp",
+ MAME_DIR .. "src/devices/bus/pci/ess_maestro.h",
+ MAME_DIR .. "src/devices/bus/pci/geforce.cpp",
+ MAME_DIR .. "src/devices/bus/pci/geforce.h",
+ MAME_DIR .. "src/devices/bus/pci/mga2064w.cpp",
+ MAME_DIR .. "src/devices/bus/pci/mga2064w.h",
+ MAME_DIR .. "src/devices/bus/pci/ncr53c825.cpp",
+ MAME_DIR .. "src/devices/bus/pci/ncr53c825.h",
+ MAME_DIR .. "src/devices/bus/pci/neon250.cpp",
+ MAME_DIR .. "src/devices/bus/pci/neon250.h",
+ MAME_DIR .. "src/devices/bus/pci/oti_spitfire.cpp",
+ MAME_DIR .. "src/devices/bus/pci/oti_spitfire.h",
+ MAME_DIR .. "src/devices/bus/pci/opti82c861.cpp",
+ MAME_DIR .. "src/devices/bus/pci/opti82c861.h",
+ MAME_DIR .. "src/devices/bus/pci/pdc20262.cpp",
+ MAME_DIR .. "src/devices/bus/pci/pdc20262.h",
+ MAME_DIR .. "src/devices/bus/pci/permedia2.cpp",
+ MAME_DIR .. "src/devices/bus/pci/permedia2.h",
+ MAME_DIR .. "src/devices/bus/pci/promotion.cpp",
+ MAME_DIR .. "src/devices/bus/pci/promotion.h",
+ MAME_DIR .. "src/devices/bus/pci/riva128.cpp",
+ MAME_DIR .. "src/devices/bus/pci/riva128.h",
+ MAME_DIR .. "src/devices/bus/pci/rivatnt.cpp",
+ MAME_DIR .. "src/devices/bus/pci/rivatnt.h",
+ MAME_DIR .. "src/devices/bus/pci/rtl8029as_pci.cpp",
+ MAME_DIR .. "src/devices/bus/pci/rtl8029as_pci.h",
+ MAME_DIR .. "src/devices/bus/pci/rtl8139_pci.cpp",
+ MAME_DIR .. "src/devices/bus/pci/rtl8139_pci.h",
+ MAME_DIR .. "src/devices/bus/pci/sis6326.cpp",
+ MAME_DIR .. "src/devices/bus/pci/sis6326.h",
+ MAME_DIR .. "src/devices/bus/pci/sonicvibes.cpp",
+ MAME_DIR .. "src/devices/bus/pci/sonicvibes.h",
+ MAME_DIR .. "src/devices/bus/pci/sw1000xg.cpp",
+ MAME_DIR .. "src/devices/bus/pci/sw1000xg.h",
+ MAME_DIR .. "src/devices/bus/pci/virge_pci.cpp",
+ MAME_DIR .. "src/devices/bus/pci/virge_pci.h",
+ MAME_DIR .. "src/devices/bus/pci/vision.cpp",
+ MAME_DIR .. "src/devices/bus/pci/vision.h",
+ MAME_DIR .. "src/devices/bus/pci/vt6306.cpp",
+ MAME_DIR .. "src/devices/bus/pci/vt6306.h",
+ MAME_DIR .. "src/devices/bus/pci/wd9710_pci.cpp",
+ MAME_DIR .. "src/devices/bus/pci/wd9710_pci.h",
+ MAME_DIR .. "src/devices/bus/pci/ymp21.cpp",
+ MAME_DIR .. "src/devices/bus/pci/ymp21.h",
+ MAME_DIR .. "src/devices/bus/pci/zr36057.cpp",
+ MAME_DIR .. "src/devices/bus/pci/zr36057.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/tanbus/tanbus.h,BUSES["TANBUS"] = true
+--@src/devices/bus/pet/cass.h,BUSES["PET"] = true
+--@src/devices/bus/pet/exp.h,BUSES["PET"] = true
+--@src/devices/bus/pet/user.h,BUSES["PET"] = true
---------------------------------------------------
-if (BUSES["TANBUS"]~=null) then
+if BUSES["PET"] then
files {
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/keyboard.h",
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt006.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt006.h",
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt009.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt009.h",
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/spinveti.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/keyboard/spinveti.h",
- MAME_DIR .. "src/devices/bus/tanbus/bullsnd.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/bullsnd.h",
- MAME_DIR .. "src/devices/bus/tanbus/etirtc.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/etirtc.h",
- MAME_DIR .. "src/devices/bus/tanbus/etisnd.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/etisnd.h",
- MAME_DIR .. "src/devices/bus/tanbus/tanbus.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tanbus.h",
- MAME_DIR .. "src/devices/bus/tanbus/tanex.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tanex.h",
- MAME_DIR .. "src/devices/bus/tanbus/tandos.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tandos.h",
- MAME_DIR .. "src/devices/bus/tanbus/tanhrg.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tanhrg.h",
- MAME_DIR .. "src/devices/bus/tanbus/tanram.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tanram.h",
- MAME_DIR .. "src/devices/bus/tanbus/tanrtc.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tanrtc.h",
- MAME_DIR .. "src/devices/bus/tanbus/mpvdu.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/mpvdu.h",
- MAME_DIR .. "src/devices/bus/tanbus/ra32k.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/ra32k.h",
- MAME_DIR .. "src/devices/bus/tanbus/radisc.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/radisc.h",
- MAME_DIR .. "src/devices/bus/tanbus/ravdu.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/ravdu.h",
- MAME_DIR .. "src/devices/bus/tanbus/tug64k.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tug64k.h",
- MAME_DIR .. "src/devices/bus/tanbus/tug8082.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tug8082.h",
- MAME_DIR .. "src/devices/bus/tanbus/tugcombo.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tugcombo.h",
- MAME_DIR .. "src/devices/bus/tanbus/tugpgm.cpp",
- MAME_DIR .. "src/devices/bus/tanbus/tugpgm.h",
+ MAME_DIR .. "src/devices/bus/pet/cass.cpp",
+ MAME_DIR .. "src/devices/bus/pet/cass.h",
+ MAME_DIR .. "src/devices/bus/pet/c2n.cpp",
+ MAME_DIR .. "src/devices/bus/pet/c2n.h",
+ MAME_DIR .. "src/devices/bus/pet/diag264_lb_tape.cpp",
+ MAME_DIR .. "src/devices/bus/pet/diag264_lb_tape.h",
+ MAME_DIR .. "src/devices/bus/pet/exp.cpp",
+ MAME_DIR .. "src/devices/bus/pet/exp.h",
+ MAME_DIR .. "src/devices/bus/pet/64k.cpp",
+ MAME_DIR .. "src/devices/bus/pet/64k.h",
+ MAME_DIR .. "src/devices/bus/pet/hsg.cpp",
+ MAME_DIR .. "src/devices/bus/pet/hsg.h",
+ MAME_DIR .. "src/devices/bus/pet/superpet.cpp",
+ MAME_DIR .. "src/devices/bus/pet/superpet.h",
+ MAME_DIR .. "src/devices/bus/pet/user.cpp",
+ MAME_DIR .. "src/devices/bus/pet/user.h",
+ MAME_DIR .. "src/devices/bus/pet/diag.cpp",
+ MAME_DIR .. "src/devices/bus/pet/diag.h",
+ MAME_DIR .. "src/devices/bus/pet/petuja.cpp",
+ MAME_DIR .. "src/devices/bus/pet/petuja.h",
+ MAME_DIR .. "src/devices/bus/pet/cb2snd.cpp",
+ MAME_DIR .. "src/devices/bus/pet/cb2snd.h",
+ MAME_DIR .. "src/devices/bus/pet/2joysnd.h",
+ MAME_DIR .. "src/devices/bus/pet/2joysnd.cpp",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/ti8x/ti8x.h,BUSES["TI8X"] = true
+--@src/devices/bus/plg1x0/plg1x0.h,BUSES["PLG1X0"] = true
---------------------------------------------------
-if (BUSES["TI8X"]~=null) then
+if BUSES["PLG1X0"] then
files {
- MAME_DIR .. "src/devices/bus/ti8x/bitsocket.cpp",
- MAME_DIR .. "src/devices/bus/ti8x/bitsocket.h",
- MAME_DIR .. "src/devices/bus/ti8x/graphlinkhle.cpp",
- MAME_DIR .. "src/devices/bus/ti8x/graphlinkhle.h",
- MAME_DIR .. "src/devices/bus/ti8x/teeconn.cpp",
- MAME_DIR .. "src/devices/bus/ti8x/teeconn.h",
- MAME_DIR .. "src/devices/bus/ti8x/ti8x.cpp",
- MAME_DIR .. "src/devices/bus/ti8x/ti8x.h",
- MAME_DIR .. "src/devices/bus/ti8x/tispeaker.cpp",
- MAME_DIR .. "src/devices/bus/ti8x/tispeaker.h",
+ MAME_DIR .. "src/devices/bus/plg1x0/plg1x0.cpp",
+ MAME_DIR .. "src/devices/bus/plg1x0/plg1x0.h",
+ MAME_DIR .. "src/devices/bus/plg1x0/plg100-vl.cpp",
+ MAME_DIR .. "src/devices/bus/plg1x0/plg100-vl.h",
+ MAME_DIR .. "src/devices/bus/plg1x0/plg150-ap.cpp",
+ MAME_DIR .. "src/devices/bus/plg1x0/plg150-ap.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/ti99x/990_dk.h,BUSES["TI99X"] = true
---@src/devices/bus/ti99x/990_tap.h,BUSES["TI99X"] = true
---@src/devices/bus/ti99x/990_hd.h,BUSES["TI99X"] = true
+--@src/devices/bus/plus4/exp.h,BUSES["PLUS4"] = true
+--@src/devices/bus/plus4/user.h,BUSES["PLUS4"] = true
---------------------------------------------------
-if (BUSES["TI99X"]~=null) then
+if BUSES["PLUS4"] then
files {
- MAME_DIR .. "src/devices/bus/ti99x/990_dk.cpp",
- MAME_DIR .. "src/devices/bus/ti99x/990_dk.h",
- MAME_DIR .. "src/devices/bus/ti99x/990_hd.cpp",
- MAME_DIR .. "src/devices/bus/ti99x/990_hd.h",
- MAME_DIR .. "src/devices/bus/ti99x/990_tap.cpp",
- MAME_DIR .. "src/devices/bus/ti99x/990_tap.h",
+ MAME_DIR .. "src/devices/bus/plus4/exp.cpp",
+ MAME_DIR .. "src/devices/bus/plus4/exp.h",
+ MAME_DIR .. "src/devices/bus/plus4/c1551.cpp",
+ MAME_DIR .. "src/devices/bus/plus4/c1551.h",
+ MAME_DIR .. "src/devices/bus/plus4/sid.cpp",
+ MAME_DIR .. "src/devices/bus/plus4/sid.h",
+ MAME_DIR .. "src/devices/bus/plus4/std.cpp",
+ MAME_DIR .. "src/devices/bus/plus4/std.h",
+ MAME_DIR .. "src/devices/bus/plus4/user.cpp",
+ MAME_DIR .. "src/devices/bus/plus4/user.h",
+ MAME_DIR .. "src/devices/bus/plus4/diag264_lb_user.cpp",
+ MAME_DIR .. "src/devices/bus/plus4/diag264_lb_user.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/ti99/colorbus/colorbus.h,BUSES["TI99"] = true
---@src/devices/bus/ti99/gromport/cartridges.h,BUSES["TI99"] = true
---@src/devices/bus/ti99/joyport/joyport.h,BUSES["TI99"] = true
---@src/devices/bus/ti99/peb/peribox.h,BUSES["TI99"] = true
---@src/devices/bus/ti99/internal/genboard.h,BUSES["TI99"] = true
+--@src/devices/bus/pofo/exp.h,BUSES["POFO"] = true
---------------------------------------------------
-if (BUSES["TI99"]~=null) then
+if BUSES["POFO"] then
files {
- MAME_DIR .. "src/devices/bus/ti99/internal/992board.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/992board.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/998board.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/998board.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/buffram.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/buffram.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/datamux.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/datamux.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/evpcconn.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/evpcconn.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/genboard.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/genboard.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/genkbd.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/genkbd.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/ioport.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/ioport.h",
- MAME_DIR .. "src/devices/bus/ti99/internal/splitter.cpp",
- MAME_DIR .. "src/devices/bus/ti99/internal/splitter.h",
- MAME_DIR .. "src/devices/bus/ti99/colorbus/busmouse.cpp",
- MAME_DIR .. "src/devices/bus/ti99/colorbus/busmouse.h",
- MAME_DIR .. "src/devices/bus/ti99/colorbus/colorbus.cpp",
- MAME_DIR .. "src/devices/bus/ti99/colorbus/colorbus.h",
- MAME_DIR .. "src/devices/bus/ti99/gromport/gromport.cpp",
- MAME_DIR .. "src/devices/bus/ti99/gromport/gromport.h",
- MAME_DIR .. "src/devices/bus/ti99/gromport/cartridges.cpp",
- MAME_DIR .. "src/devices/bus/ti99/gromport/cartridges.h",
- MAME_DIR .. "src/devices/bus/ti99/gromport/gkracker.cpp",
- MAME_DIR .. "src/devices/bus/ti99/gromport/gkracker.h",
- MAME_DIR .. "src/devices/bus/ti99/gromport/multiconn.cpp",
- MAME_DIR .. "src/devices/bus/ti99/gromport/multiconn.h",
- MAME_DIR .. "src/devices/bus/ti99/gromport/singleconn.cpp",
- MAME_DIR .. "src/devices/bus/ti99/gromport/singleconn.h",
- MAME_DIR .. "src/devices/bus/ti99/joyport/handset.cpp",
- MAME_DIR .. "src/devices/bus/ti99/joyport/handset.h",
- MAME_DIR .. "src/devices/bus/ti99/joyport/joyport.cpp",
- MAME_DIR .. "src/devices/bus/ti99/joyport/joyport.h",
- MAME_DIR .. "src/devices/bus/ti99/joyport/mecmouse.cpp",
- MAME_DIR .. "src/devices/bus/ti99/joyport/mecmouse.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/peribox.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/peribox.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/bwg.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/bwg.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/cc_fdc.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/cc_fdc.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/myarcfdc.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/myarcfdc.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/evpc.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/evpc.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/forti.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/forti.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/hfdc.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/hfdc.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/horizon.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/horizon.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/hsgpl.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/hsgpl.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/memex.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/memex.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/myarcmem.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/myarcmem.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/pcode.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/pcode.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/pgram.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/pgram.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/samsmem.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/samsmem.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/scsicard.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/scsicard.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/sidmaster.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/sidmaster.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/speechadapter.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/speechadapter.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/ti_32kmem.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/ti_32kmem.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/ti_fdc.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/ti_fdc.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/ti_rs232.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/ti_rs232.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/tipi.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/tipi.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/tn_ide.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/tn_ide.h",
- MAME_DIR .. "src/devices/bus/ti99/peb/tn_usbsm.cpp",
- MAME_DIR .. "src/devices/bus/ti99/peb/tn_usbsm.h",
- MAME_DIR .. "src/devices/bus/ti99/sidecar/arcturus.cpp",
- MAME_DIR .. "src/devices/bus/ti99/sidecar/arcturus.h",
- MAME_DIR .. "src/devices/bus/ti99/sidecar/speechsyn.cpp",
- MAME_DIR .. "src/devices/bus/ti99/sidecar/speechsyn.h",
+ MAME_DIR .. "src/devices/bus/pofo/exp.cpp",
+ MAME_DIR .. "src/devices/bus/pofo/exp.h",
+ MAME_DIR .. "src/devices/bus/pofo/hpc101.cpp",
+ MAME_DIR .. "src/devices/bus/pofo/hpc101.h",
+ MAME_DIR .. "src/devices/bus/pofo/hpc102.cpp",
+ MAME_DIR .. "src/devices/bus/pofo/hpc102.h",
+ MAME_DIR .. "src/devices/bus/pofo/hpc104.cpp",
+ MAME_DIR .. "src/devices/bus/pofo/hpc104.h",
+ MAME_DIR .. "src/devices/bus/pofo/ccm.cpp",
+ MAME_DIR .. "src/devices/bus/pofo/ccm.h",
+ MAME_DIR .. "src/devices/bus/pofo/ram.cpp",
+ MAME_DIR .. "src/devices/bus/pofo/ram.h",
+ MAME_DIR .. "src/devices/bus/pofo/rom.cpp",
+ MAME_DIR .. "src/devices/bus/pofo/rom.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/gameboy/slot.h,BUSES["GAMEBOY"] = true
+--@src/devices/bus/psi_kbd/psi_kbd.h,BUSES["PSI_KEYBOARD"] = true
---------------------------------------------------
-if (BUSES["GAMEBOY"]~=null) then
+if BUSES["PSI_KEYBOARD"] then
files {
- MAME_DIR .. "src/devices/bus/gameboy/camera.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/camera.h",
- MAME_DIR .. "src/devices/bus/gameboy/cartbase.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/cartbase.h",
- MAME_DIR .. "src/devices/bus/gameboy/cartbase.ipp",
- MAME_DIR .. "src/devices/bus/gameboy/cartheader.h",
- MAME_DIR .. "src/devices/bus/gameboy/carts.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/carts.h",
- MAME_DIR .. "src/devices/bus/gameboy/gbck003.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/gbck003.h",
- MAME_DIR .. "src/devices/bus/gameboy/gbslot.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/gbslot.h",
- MAME_DIR .. "src/devices/bus/gameboy/gbxfile.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/gbxfile.h",
- MAME_DIR .. "src/devices/bus/gameboy/huc1.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/huc1.h",
- MAME_DIR .. "src/devices/bus/gameboy/huc3.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/huc3.h",
- MAME_DIR .. "src/devices/bus/gameboy/liebao.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/liebao.h",
- MAME_DIR .. "src/devices/bus/gameboy/mbc.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/mbc.h",
- MAME_DIR .. "src/devices/bus/gameboy/mbc2.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/mbc2.h",
- MAME_DIR .. "src/devices/bus/gameboy/mbc3.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/mbc3.h",
- MAME_DIR .. "src/devices/bus/gameboy/mbc6.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/mbc6.h",
- MAME_DIR .. "src/devices/bus/gameboy/mbc7.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/mbc7.h",
- MAME_DIR .. "src/devices/bus/gameboy/mdslot.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/mdslot.h",
- MAME_DIR .. "src/devices/bus/gameboy/mmm01.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/mmm01.h",
- MAME_DIR .. "src/devices/bus/gameboy/ntnew.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/ntnew.h",
- MAME_DIR .. "src/devices/bus/gameboy/rom.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/rom.h",
- MAME_DIR .. "src/devices/bus/gameboy/slmulti.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/slmulti.h",
- MAME_DIR .. "src/devices/bus/gameboy/slot.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/slot.h",
- MAME_DIR .. "src/devices/bus/gameboy/tama5.cpp",
- MAME_DIR .. "src/devices/bus/gameboy/tama5.h",
+ MAME_DIR .. "src/devices/bus/psi_kbd/psi_kbd.cpp",
+ MAME_DIR .. "src/devices/bus/psi_kbd/psi_kbd.h",
+ MAME_DIR .. "src/devices/bus/psi_kbd/ergoline.cpp",
+ MAME_DIR .. "src/devices/bus/psi_kbd/ergoline.h",
+ MAME_DIR .. "src/devices/bus/psi_kbd/hle.cpp",
+ MAME_DIR .. "src/devices/bus/psi_kbd/hle.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/gba/gba_slot.h,BUSES["GBA"] = true
+--@src/devices/bus/psion/honda/slot.h,BUSES["PSION_HONDA"] = true
---------------------------------------------------
-if (BUSES["GBA"]~=null) then
+if BUSES["PSION_HONDA"] then
files {
- MAME_DIR .. "src/devices/bus/gba/gba_slot.cpp",
- MAME_DIR .. "src/devices/bus/gba/gba_slot.h",
- MAME_DIR .. "src/devices/bus/gba/rom.cpp",
- MAME_DIR .. "src/devices/bus/gba/rom.h",
+ MAME_DIR .. "src/devices/bus/psion/honda/slot.cpp",
+ MAME_DIR .. "src/devices/bus/psion/honda/slot.h",
+ MAME_DIR .. "src/devices/bus/psion/honda/parallel.cpp",
+ MAME_DIR .. "src/devices/bus/psion/honda/parallel.h",
+ MAME_DIR .. "src/devices/bus/psion/honda/pclink.cpp",
+ MAME_DIR .. "src/devices/bus/psion/honda/pclink.h",
+ MAME_DIR .. "src/devices/bus/psion/honda/ssd.cpp",
+ MAME_DIR .. "src/devices/bus/psion/honda/ssd.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/bml3/bml3bus.h,BUSES["BML3"] = true
+--@src/devices/bus/psion/module/slot.h,BUSES["PSION_MODULE"] = true
---------------------------------------------------
-if (BUSES["BML3"]~=null) then
+
+if BUSES["PSION_MODULE"] then
files {
- MAME_DIR .. "src/devices/bus/bml3/bml3bus.cpp",
- MAME_DIR .. "src/devices/bus/bml3/bml3bus.h",
- MAME_DIR .. "src/devices/bus/bml3/mp1802.cpp",
- MAME_DIR .. "src/devices/bus/bml3/mp1802.h",
- MAME_DIR .. "src/devices/bus/bml3/mp1805.cpp",
- MAME_DIR .. "src/devices/bus/bml3/mp1805.h",
- MAME_DIR .. "src/devices/bus/bml3/kanji.cpp",
- MAME_DIR .. "src/devices/bus/bml3/kanji.h",
- MAME_DIR .. "src/devices/bus/bml3/rtc.cpp",
- MAME_DIR .. "src/devices/bus/bml3/rtc.h",
+ MAME_DIR .. "src/devices/bus/psion/module/slot.cpp",
+ MAME_DIR .. "src/devices/bus/psion/module/slot.h",
+ MAME_DIR .. "src/devices/bus/psion/module/serpar.cpp",
+ MAME_DIR .. "src/devices/bus/psion/module/serpar.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/coco/cococart.h,BUSES["COCO"] = true
+--@src/devices/bus/psion/sibo/slot.h,BUSES["PSION_SIBO"] = true
---------------------------------------------------
-if (BUSES["COCO"]~=null) then
+
+if BUSES["PSION_SIBO"] then
files {
- MAME_DIR .. "src/devices/bus/coco/coco_dcmodem.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_dcmodem.h",
- MAME_DIR .. "src/devices/bus/coco/coco_dwsock.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_dwsock.h",
- MAME_DIR .. "src/devices/bus/coco/coco_fdc.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_fdc.h",
- MAME_DIR .. "src/devices/bus/coco/coco_gmc.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_gmc.h",
- MAME_DIR .. "src/devices/bus/coco/coco_ide.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_ide.h",
- MAME_DIR .. "src/devices/bus/coco/coco_max.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_max.h",
- MAME_DIR .. "src/devices/bus/coco/coco_midi.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_midi.h",
- MAME_DIR .. "src/devices/bus/coco/coco_multi.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_multi.h",
- MAME_DIR .. "src/devices/bus/coco/coco_orch90.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_orch90.h",
- MAME_DIR .. "src/devices/bus/coco/coco_pak.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_pak.h",
- MAME_DIR .. "src/devices/bus/coco/coco_psg.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_psg.h",
- MAME_DIR .. "src/devices/bus/coco/coco_ram.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_ram.h",
- MAME_DIR .. "src/devices/bus/coco/coco_rs232.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_rs232.h",
- MAME_DIR .. "src/devices/bus/coco/coco_ssc.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_ssc.h",
- MAME_DIR .. "src/devices/bus/coco/coco_stecomp.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_stecomp.h",
- MAME_DIR .. "src/devices/bus/coco/coco_sym12.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_sym12.h",
- MAME_DIR .. "src/devices/bus/coco/coco_t4426.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_t4426.h",
- MAME_DIR .. "src/devices/bus/coco/coco_wpk.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_wpk.h",
- MAME_DIR .. "src/devices/bus/coco/coco_wpk2p.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_wpk2p.h",
- MAME_DIR .. "src/devices/bus/coco/coco_xsid.cpp",
- MAME_DIR .. "src/devices/bus/coco/coco_xsid.h",
- MAME_DIR .. "src/devices/bus/coco/cococart.cpp",
- MAME_DIR .. "src/devices/bus/coco/cococart.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_amtor.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_amtor.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_claw.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_claw.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_fdc.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_fdc.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_jcbsnd.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_jcbsnd.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_jcbspch.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_jcbspch.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_msx2.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_msx2.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_serial.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_serial.h",
- MAME_DIR .. "src/devices/bus/coco/dragon_sprites.cpp",
- MAME_DIR .. "src/devices/bus/coco/dragon_sprites.h",
- MAME_DIR .. "src/devices/bus/coco/meb_intrf.cpp",
- MAME_DIR .. "src/devices/bus/coco/meb_intrf.h",
- MAME_DIR .. "src/devices/bus/coco/meb_rtime.cpp",
- MAME_DIR .. "src/devices/bus/coco/meb_rtime.h",
+ MAME_DIR .. "src/devices/bus/psion/sibo/slot.cpp",
+ MAME_DIR .. "src/devices/bus/psion/sibo/slot.h",
+ MAME_DIR .. "src/devices/bus/psion/sibo/3fax.cpp",
+ MAME_DIR .. "src/devices/bus/psion/sibo/3fax.h",
+ MAME_DIR .. "src/devices/bus/psion/sibo/3link.cpp",
+ MAME_DIR .. "src/devices/bus/psion/sibo/3link.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/cpc/cpcexp.h,BUSES["CPC"] = true
+--@src/devices/bus/psx/ctlrport.h,BUSES["PSX_CONTROLLER"] = true
---------------------------------------------------
-if (BUSES["CPC"]~=null) then
+
+if BUSES["PSX_CONTROLLER"] then
files {
- MAME_DIR .. "src/devices/bus/cpc/cpcexp.cpp",
- MAME_DIR .. "src/devices/bus/cpc/cpcexp.h",
- MAME_DIR .. "src/devices/bus/cpc/cpc_ssa1.cpp",
- MAME_DIR .. "src/devices/bus/cpc/cpc_ssa1.h",
- MAME_DIR .. "src/devices/bus/cpc/cpc_rom.cpp",
- MAME_DIR .. "src/devices/bus/cpc/cpc_rom.h",
- MAME_DIR .. "src/devices/bus/cpc/cpc_pds.cpp",
- MAME_DIR .. "src/devices/bus/cpc/cpc_pds.h",
- MAME_DIR .. "src/devices/bus/cpc/cpc_rs232.cpp",
- MAME_DIR .. "src/devices/bus/cpc/cpc_rs232.h",
- MAME_DIR .. "src/devices/bus/cpc/mface2.cpp",
- MAME_DIR .. "src/devices/bus/cpc/mface2.h",
- MAME_DIR .. "src/devices/bus/cpc/symbfac2.cpp",
- MAME_DIR .. "src/devices/bus/cpc/symbfac2.h",
- MAME_DIR .. "src/devices/bus/cpc/amdrum.cpp",
- MAME_DIR .. "src/devices/bus/cpc/amdrum.h",
- MAME_DIR .. "src/devices/bus/cpc/playcity.cpp",
- MAME_DIR .. "src/devices/bus/cpc/playcity.h",
- MAME_DIR .. "src/devices/bus/cpc/smartwatch.cpp",
- MAME_DIR .. "src/devices/bus/cpc/smartwatch.h",
- MAME_DIR .. "src/devices/bus/cpc/brunword4.cpp",
- MAME_DIR .. "src/devices/bus/cpc/brunword4.h",
- MAME_DIR .. "src/devices/bus/cpc/hd20.cpp",
- MAME_DIR .. "src/devices/bus/cpc/hd20.h",
- MAME_DIR .. "src/devices/bus/cpc/ddi1.cpp",
- MAME_DIR .. "src/devices/bus/cpc/ddi1.h",
- MAME_DIR .. "src/devices/bus/cpc/magicsound.cpp",
- MAME_DIR .. "src/devices/bus/cpc/magicsound.h",
- MAME_DIR .. "src/devices/bus/cpc/doubler.cpp",
- MAME_DIR .. "src/devices/bus/cpc/doubler.h",
- MAME_DIR .. "src/devices/bus/cpc/transtape.cpp",
- MAME_DIR .. "src/devices/bus/cpc/transtape.h",
- MAME_DIR .. "src/devices/bus/cpc/musicmachine.cpp",
- MAME_DIR .. "src/devices/bus/cpc/musicmachine.h",
+ MAME_DIR .. "src/devices/bus/psx/ctlrport.cpp",
+ MAME_DIR .. "src/devices/bus/psx/ctlrport.h",
+ MAME_DIR .. "src/devices/bus/psx/analogue.cpp",
+ MAME_DIR .. "src/devices/bus/psx/analogue.h",
+ MAME_DIR .. "src/devices/bus/psx/multitap.cpp",
+ MAME_DIR .. "src/devices/bus/psx/multitap.h",
+ MAME_DIR .. "src/devices/bus/psx/memcard.cpp",
+ MAME_DIR .. "src/devices/bus/psx/memcard.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/epson_sio/epson_sio.h,BUSES["EPSON_SIO"] = true
+--@src/devices/bus/psx/parallel.h,BUSES["PSX_PARALLEL"] = true
---------------------------------------------------
-if (BUSES["EPSON_SIO"]~=null) then
+
+if BUSES["PSX_PARALLEL"] then
files {
- MAME_DIR .. "src/devices/bus/epson_sio/epson_sio.cpp",
- MAME_DIR .. "src/devices/bus/epson_sio/epson_sio.h",
- MAME_DIR .. "src/devices/bus/epson_sio/pf10.cpp",
- MAME_DIR .. "src/devices/bus/epson_sio/pf10.h",
- MAME_DIR .. "src/devices/bus/epson_sio/tf20.cpp",
- MAME_DIR .. "src/devices/bus/epson_sio/tf20.h",
+ MAME_DIR .. "src/devices/bus/psx/parallel.cpp",
+ MAME_DIR .. "src/devices/bus/psx/parallel.h",
+ MAME_DIR .. "src/devices/bus/psx/gamebooster.cpp",
+ MAME_DIR .. "src/devices/bus/psx/gamebooster.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/epson_qx/option.h,BUSES["EPSON_QX"] = true
+--@src/devices/bus/qbus/qbus.h,BUSES["QBUS"] = true
---------------------------------------------------
-if (BUSES["EPSON_QX"]~=null) then
+
+if BUSES["QBUS"] then
files {
- MAME_DIR .. "src/devices/bus/epson_qx/cqgmem.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/cqgmem.h",
- MAME_DIR .. "src/devices/bus/epson_qx/cr1510.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/cr1510.h",
- MAME_DIR .. "src/devices/bus/epson_qx/ide.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/ide.h",
- MAME_DIR .. "src/devices/bus/epson_qx/multifont.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/multifont.h",
- MAME_DIR .. "src/devices/bus/epson_qx/option.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/option.h",
- MAME_DIR .. "src/devices/bus/epson_qx/sound_card.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/sound_card.h",
+ MAME_DIR .. "src/devices/bus/qbus/bk_altpro.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/bk_altpro.h",
+ MAME_DIR .. "src/devices/bus/qbus/bk_irps.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/bk_irps.h",
+ MAME_DIR .. "src/devices/bus/qbus/bk_kmd.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/bk_kmd.h",
+ MAME_DIR .. "src/devices/bus/qbus/bk_samara.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/bk_samara.h",
+ MAME_DIR .. "src/devices/bus/qbus/dsd4432.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/dsd4432.h",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_dwhle.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_dwhle.h",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_kgd.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_kgd.h",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_kmd.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_kmd.h",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_ktlk.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_ktlk.h",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_mx.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/dvk_mx.h",
+ MAME_DIR .. "src/devices/bus/qbus/pc11.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/pc11.h",
+ MAME_DIR .. "src/devices/bus/qbus/qbus.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/qbus.h",
+ MAME_DIR .. "src/devices/bus/qbus/qg640.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/qg640.h",
+ MAME_DIR .. "src/devices/bus/qbus/qtx.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/qtx.h",
+ MAME_DIR .. "src/devices/bus/qbus/tdl12.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/tdl12.h",
+ MAME_DIR .. "src/devices/bus/qbus/terak_v.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/terak_v.h",
+ MAME_DIR .. "src/devices/bus/qbus/uknc_kmd.cpp",
+ MAME_DIR .. "src/devices/bus/qbus/uknc_kmd.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/epson_qx/keyboard/keyboard.h,BUSES["EPSON_QX_KEYBOARD"] = true
+--@src/devices/bus/ql/exp.h,BUSES["QL"] = true
---------------------------------------------------
-if (BUSES["EPSON_QX_KEYBOARD"]~=null) then
+if BUSES["QL"] then
files {
- MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.h",
- MAME_DIR .. "src/devices/bus/epson_qx/keyboard/matrix.cpp",
- MAME_DIR .. "src/devices/bus/epson_qx/keyboard/matrix.h",
+ MAME_DIR .. "src/devices/bus/ql/exp.cpp",
+ MAME_DIR .. "src/devices/bus/ql/exp.h",
+ MAME_DIR .. "src/devices/bus/ql/cst_qdisc.cpp",
+ MAME_DIR .. "src/devices/bus/ql/cst_qdisc.h",
+ MAME_DIR .. "src/devices/bus/ql/cst_q_plus4.cpp",
+ MAME_DIR .. "src/devices/bus/ql/cst_q_plus4.h",
+ MAME_DIR .. "src/devices/bus/ql/cumana_fdi.cpp",
+ MAME_DIR .. "src/devices/bus/ql/cumana_fdi.h",
+ MAME_DIR .. "src/devices/bus/ql/kempston_di.cpp",
+ MAME_DIR .. "src/devices/bus/ql/kempston_di.h",
+ MAME_DIR .. "src/devices/bus/ql/miracle_gold_card.cpp",
+ MAME_DIR .. "src/devices/bus/ql/miracle_gold_card.h",
+ MAME_DIR .. "src/devices/bus/ql/mp_fdi.cpp",
+ MAME_DIR .. "src/devices/bus/ql/mp_fdi.h",
+ MAME_DIR .. "src/devices/bus/ql/opd_basic_master.cpp",
+ MAME_DIR .. "src/devices/bus/ql/opd_basic_master.h",
+ MAME_DIR .. "src/devices/bus/ql/pcml_qdisk.cpp",
+ MAME_DIR .. "src/devices/bus/ql/pcml_qdisk.h",
+ MAME_DIR .. "src/devices/bus/ql/qubide.cpp",
+ MAME_DIR .. "src/devices/bus/ql/qubide.h",
+ MAME_DIR .. "src/devices/bus/ql/sandy_superdisk.cpp",
+ MAME_DIR .. "src/devices/bus/ql/sandy_superdisk.h",
+ MAME_DIR .. "src/devices/bus/ql/sandy_superqboard.cpp",
+ MAME_DIR .. "src/devices/bus/ql/sandy_superqboard.h",
+ MAME_DIR .. "src/devices/bus/ql/trumpcard.cpp",
+ MAME_DIR .. "src/devices/bus/ql/trumpcard.h",
+ MAME_DIR .. "src/devices/bus/ql/rom.cpp",
+ MAME_DIR .. "src/devices/bus/ql/rom.h",
+ MAME_DIR .. "src/devices/bus/ql/miracle_hd.cpp",
+ MAME_DIR .. "src/devices/bus/ql/miracle_hd.h",
+ MAME_DIR .. "src/devices/bus/ql/std.cpp",
+ MAME_DIR .. "src/devices/bus/ql/std.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/rc2014/rc2014.h,BUSES["RC2014"] = true
+---------------------------------------------------
+
+if BUSES["RC2014"] then
+ files {
+ MAME_DIR .. "src/devices/bus/rc2014/rc2014.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/rc2014.h",
+ MAME_DIR .. "src/devices/bus/rc2014/cf.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/cf.h",
+ MAME_DIR .. "src/devices/bus/rc2014/clock.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/clock.h",
+ MAME_DIR .. "src/devices/bus/rc2014/edge.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/edge.h",
+ MAME_DIR .. "src/devices/bus/rc2014/fdc.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/fdc.h",
+ MAME_DIR .. "src/devices/bus/rc2014/ide.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/ide.h",
+ MAME_DIR .. "src/devices/bus/rc2014/micro.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/micro.h",
+ MAME_DIR .. "src/devices/bus/rc2014/modules.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/modules.h",
+ MAME_DIR .. "src/devices/bus/rc2014/ram.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/ram.h",
+ MAME_DIR .. "src/devices/bus/rc2014/rom.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/rom.h",
+ MAME_DIR .. "src/devices/bus/rc2014/romram.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/romram.h",
+ MAME_DIR .. "src/devices/bus/rc2014/rtc.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/rtc.h",
+ MAME_DIR .. "src/devices/bus/rc2014/serial.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/serial.h",
+ MAME_DIR .. "src/devices/bus/rc2014/sound_ym_ay.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/sound_ym_ay.h",
+ MAME_DIR .. "src/devices/bus/rc2014/z180cpu.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/z180cpu.h",
+ MAME_DIR .. "src/devices/bus/rc2014/z80cpu.cpp",
+ MAME_DIR .. "src/devices/bus/rc2014/z80cpu.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/rs232/rs232.h,BUSES["RS232"] = true
+---------------------------------------------------
+
+if BUSES["RS232"] then
+ files {
+ MAME_DIR .. "src/devices/bus/rs232/exorterm.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/exorterm.h",
+ MAME_DIR .. "src/devices/bus/rs232/heath_h19.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/heath_h19.h",
+ MAME_DIR .. "src/devices/bus/rs232/hlemouse.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/hlemouse.h",
+ MAME_DIR .. "src/devices/bus/rs232/ie15.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/ie15.h",
+ MAME_DIR .. "src/devices/bus/rs232/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/keyboard.h",
+ MAME_DIR .. "src/devices/bus/rs232/loopback.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/loopback.h",
+ MAME_DIR .. "src/devices/bus/rs232/mboardd.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/mboardd.h",
+ MAME_DIR .. "src/devices/bus/rs232/nss_tvinterface.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/nss_tvinterface.h",
+ MAME_DIR .. "src/devices/bus/rs232/null_modem.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/null_modem.h",
+ MAME_DIR .. "src/devices/bus/rs232/patchbox.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/patchbox.h",
+ MAME_DIR .. "src/devices/bus/rs232/printer.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/printer.h",
+ MAME_DIR .. "src/devices/bus/rs232/pty.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/pty.h",
+ MAME_DIR .. "src/devices/bus/rs232/rs232.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/rs232.h",
+ MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/rs232_sync_io.h",
+ MAME_DIR .. "src/devices/bus/rs232/scorpion.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/scorpion.h",
+ MAME_DIR .. "src/devices/bus/rs232/sun_kbd.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/sun_kbd.h",
+ MAME_DIR .. "src/devices/bus/rs232/swtpc8212.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/swtpc8212.h",
+ MAME_DIR .. "src/devices/bus/rs232/teletex800.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/teletex800.h",
+ MAME_DIR .. "src/devices/bus/rs232/terminal.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/terminal.h",
+ MAME_DIR .. "src/devices/bus/rs232/votraxtnt.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/votraxtnt.h",
+ MAME_DIR .. "src/devices/bus/rs232/xvd701.cpp",
+ MAME_DIR .. "src/devices/bus/rs232/xvd701.h",
}
+
dependency {
- { MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.cpp", GEN_DIR .. "emu/layout/qx10ascii.lh" },
- { MAME_DIR .. "src/devices/bus/epson_qx/keyboard/keyboard.cpp", GEN_DIR .. "emu/layout/qx10hasci.lh" },
+ { MAME_DIR .. "src/devices/bus/rs232/teletex800.cpp", GEN_DIR .. "emu/layout/teletex800.lh" },
}
custombuildtask {
- layoutbuildtask("emu/layout", "qx10ascii"),
- layoutbuildtask("emu/layout", "qx10hasci"),
+ layoutbuildtask("emu/layout", "teletex800"),
}
end
+
---------------------------------------------------
--
---@src/devices/bus/pce/pce_slot.h,BUSES["PCE"] = true
+--@src/devices/bus/s100/s100.h,BUSES["S100"] = true
---------------------------------------------------
-if (BUSES["PCE"]~=null) then
+
+if BUSES["S100"] then
files {
- MAME_DIR .. "src/devices/bus/pce/pce_slot.cpp",
- MAME_DIR .. "src/devices/bus/pce/pce_slot.h",
- MAME_DIR .. "src/devices/bus/pce/pce_rom.cpp",
- MAME_DIR .. "src/devices/bus/pce/pce_rom.h",
- MAME_DIR .. "src/devices/bus/pce/pce_scdsys.cpp",
- MAME_DIR .. "src/devices/bus/pce/pce_scdsys.h",
- MAME_DIR .. "src/devices/bus/pce/pce_acard.cpp",
- MAME_DIR .. "src/devices/bus/pce/pce_acard.h",
+ MAME_DIR .. "src/devices/bus/s100/s100.cpp",
+ MAME_DIR .. "src/devices/bus/s100/s100.h",
+ MAME_DIR .. "src/devices/bus/s100/am310.cpp",
+ MAME_DIR .. "src/devices/bus/s100/am310.h",
+ MAME_DIR .. "src/devices/bus/s100/ascsasi.cpp",
+ MAME_DIR .. "src/devices/bus/s100/ascsasi.h",
+ MAME_DIR .. "src/devices/bus/s100/dg640.cpp",
+ MAME_DIR .. "src/devices/bus/s100/dg640.h",
+ MAME_DIR .. "src/devices/bus/s100/dj2db.cpp",
+ MAME_DIR .. "src/devices/bus/s100/dj2db.h",
+ MAME_DIR .. "src/devices/bus/s100/djdma.cpp",
+ MAME_DIR .. "src/devices/bus/s100/djdma.h",
+ MAME_DIR .. "src/devices/bus/s100/mm65k16s.cpp",
+ MAME_DIR .. "src/devices/bus/s100/mm65k16s.h",
+ MAME_DIR .. "src/devices/bus/s100/nsmdsa.cpp",
+ MAME_DIR .. "src/devices/bus/s100/nsmdsa.h",
+ MAME_DIR .. "src/devices/bus/s100/nsmdsad.cpp",
+ MAME_DIR .. "src/devices/bus/s100/nsmdsad.h",
+ MAME_DIR .. "src/devices/bus/s100/poly16k.cpp",
+ MAME_DIR .. "src/devices/bus/s100/poly16k.h",
+ MAME_DIR .. "src/devices/bus/s100/polyfdc.cpp",
+ MAME_DIR .. "src/devices/bus/s100/polyfdc.h",
+ MAME_DIR .. "src/devices/bus/s100/polyvti.cpp",
+ MAME_DIR .. "src/devices/bus/s100/polyvti.h",
+ MAME_DIR .. "src/devices/bus/s100/seals8k.cpp",
+ MAME_DIR .. "src/devices/bus/s100/seals8k.h",
+ MAME_DIR .. "src/devices/bus/s100/vectordualmode.cpp",
+ MAME_DIR .. "src/devices/bus/s100/vectordualmode.h",
+ MAME_DIR .. "src/devices/bus/s100/wunderbus.cpp",
+ MAME_DIR .. "src/devices/bus/s100/wunderbus.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/pce_ctrl/pcectrl.h,BUSES["PCE_CTRL"] = true
+--@src/devices/bus/saitek_osa/expansion.h,BUSES["SAITEK_OSA"] = true
---------------------------------------------------
-if (BUSES["PCE_CTRL"]~=null) then
+if BUSES["SAITEK_OSA"] then
files {
- MAME_DIR .. "src/devices/bus/pce_ctrl/pcectrl.cpp",
- MAME_DIR .. "src/devices/bus/pce_ctrl/pcectrl.h",
- MAME_DIR .. "src/devices/bus/pce_ctrl/joypad2.cpp",
- MAME_DIR .. "src/devices/bus/pce_ctrl/joypad2.h",
- MAME_DIR .. "src/devices/bus/pce_ctrl/joypad6.cpp",
- MAME_DIR .. "src/devices/bus/pce_ctrl/joypad6.h",
- MAME_DIR .. "src/devices/bus/pce_ctrl/mouse.cpp",
- MAME_DIR .. "src/devices/bus/pce_ctrl/mouse.h",
- MAME_DIR .. "src/devices/bus/pce_ctrl/multitap.cpp",
- MAME_DIR .. "src/devices/bus/pce_ctrl/multitap.h",
- MAME_DIR .. "src/devices/bus/pce_ctrl/pachinko.cpp",
- MAME_DIR .. "src/devices/bus/pce_ctrl/pachinko.h",
- MAME_DIR .. "src/devices/bus/pce_ctrl/xhe3.cpp",
- MAME_DIR .. "src/devices/bus/pce_ctrl/xhe3.h",
+ MAME_DIR .. "src/devices/bus/saitek_osa/expansion.cpp",
+ MAME_DIR .. "src/devices/bus/saitek_osa/expansion.h",
+ MAME_DIR .. "src/devices/bus/saitek_osa/maestro.cpp",
+ MAME_DIR .. "src/devices/bus/saitek_osa/maestro.h",
+ MAME_DIR .. "src/devices/bus/saitek_osa/maestroa.cpp",
+ MAME_DIR .. "src/devices/bus/saitek_osa/maestroa.h",
+ MAME_DIR .. "src/devices/bus/saitek_osa/sparc.cpp",
+ MAME_DIR .. "src/devices/bus/saitek_osa/sparc.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/scv/slot.h,BUSES["SCV"] = true
+--@src/devices/bus/samcoupe/drive/drive.h,BUSES["SAMCOUPE_DRIVE"] = true
---------------------------------------------------
-if (BUSES["SCV"]~=null) then
+
+if BUSES["SAMCOUPE_DRIVE"] then
files {
- MAME_DIR .. "src/devices/bus/scv/slot.cpp",
- MAME_DIR .. "src/devices/bus/scv/slot.h",
- MAME_DIR .. "src/devices/bus/scv/rom.cpp",
- MAME_DIR .. "src/devices/bus/scv/rom.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/drive.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/drive.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/modules.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/modules.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/atom.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/atom.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/floppy.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/drive/floppy.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/x68k/x68kexp.h,BUSES["X68K"] = true
+--@src/devices/bus/samcoupe/expansion/expansion.h,BUSES["SAMCOUPE_EXPANSION"] = true
---------------------------------------------------
-if (BUSES["X68K"]~=null) then
+
+if BUSES["SAMCOUPE_EXPANSION"] then
files {
- MAME_DIR .. "src/devices/bus/x68k/x68kexp.cpp",
- MAME_DIR .. "src/devices/bus/x68k/x68kexp.h",
- MAME_DIR .. "src/devices/bus/x68k/x68k_neptunex.cpp",
- MAME_DIR .. "src/devices/bus/x68k/x68k_neptunex.h",
- MAME_DIR .. "src/devices/bus/x68k/x68k_scsiext.cpp",
- MAME_DIR .. "src/devices/bus/x68k/x68k_scsiext.h",
- MAME_DIR .. "src/devices/bus/x68k/x68k_midi.cpp",
- MAME_DIR .. "src/devices/bus/x68k/x68k_midi.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/expansion.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/expansion.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/modules.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/modules.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/blue_sampler.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/blue_sampler.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/dallas.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/dallas.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/onemeg.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/onemeg.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/sambus.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/sambus.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/sdide.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/sdide.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/sid.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/sid.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/spi.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/spi.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/voicebox.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/expansion/voicebox.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/abckb/abckb.h,BUSES["ABCKB"] = true
+--@src/devices/bus/samcoupe/mouse/mouse.h,BUSES["SAMCOUPE_MOUSE_PORT"] = true
---------------------------------------------------
-if (BUSES["ABCKB"]~=null) then
+
+if BUSES["SAMCOUPE_MOUSE_PORT"] then
files {
- MAME_DIR .. "src/devices/bus/abckb/abckb.cpp",
- MAME_DIR .. "src/devices/bus/abckb/abckb.h",
- MAME_DIR .. "src/devices/bus/abckb/abc77.cpp",
- MAME_DIR .. "src/devices/bus/abckb/abc77.h",
- MAME_DIR .. "src/devices/bus/abckb/abc99.cpp",
- MAME_DIR .. "src/devices/bus/abckb/abc99.h",
- MAME_DIR .. "src/devices/bus/abckb/abc800kb.cpp",
- MAME_DIR .. "src/devices/bus/abckb/abc800kb.h",
- MAME_DIR .. "src/devices/bus/abckb/r8.cpp",
- MAME_DIR .. "src/devices/bus/abckb/r8.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouseport.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouseport.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/mouse/modules.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/mouse/modules.h",
+ MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouse.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/compucolor/floppy.h,BUSES["COMPUCOLOR"] = true
+--@src/devices/bus/sat_ctrl/ctrl.h,BUSES["SAT_CTRL"] = true
---------------------------------------------------
-if (BUSES["COMPUCOLOR"]~=null) then
+
+if BUSES["SAT_CTRL"] then
files {
- MAME_DIR .. "src/devices/bus/compucolor/floppy.cpp",
- MAME_DIR .. "src/devices/bus/compucolor/floppy.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/ctrl.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/ctrl.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/analog.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/analog.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/joy.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/joy.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/joy_md.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/joy_md.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/keybd.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/keybd.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/mouse.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/multitap.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/multitap.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/pointer.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/pointer.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/racing.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/racing.h",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/segatap.cpp",
+ MAME_DIR .. "src/devices/bus/sat_ctrl/segatap.h",
}
end
---------------------------------------------------
--
+--@src/devices/bus/saturn/sat_slot.h,BUSES["SATURN"] = true
+---------------------------------------------------
+
+if BUSES["SATURN"] then
+ files {
+ MAME_DIR .. "src/devices/bus/saturn/sat_slot.cpp",
+ MAME_DIR .. "src/devices/bus/saturn/sat_slot.h",
+ MAME_DIR .. "src/devices/bus/saturn/bram.cpp",
+ MAME_DIR .. "src/devices/bus/saturn/bram.h",
+ MAME_DIR .. "src/devices/bus/saturn/dram.cpp",
+ MAME_DIR .. "src/devices/bus/saturn/dram.h",
+ MAME_DIR .. "src/devices/bus/saturn/rom.cpp",
+ MAME_DIR .. "src/devices/bus/saturn/rom.h",
+ }
+end
+
+
+---------------------------------------------------
+--
+--@src/devices/bus/sbus/sbus.h,BUSES["SBUS"] = true
+---------------------------------------------------
+
+if BUSES["SBUS"] then
+ files {
+ MAME_DIR .. "src/devices/bus/sbus/artecon.cpp",
+ MAME_DIR .. "src/devices/bus/sbus/artecon.h",
+ MAME_DIR .. "src/devices/bus/sbus/bwtwo.cpp",
+ MAME_DIR .. "src/devices/bus/sbus/bwtwo.h",
+ MAME_DIR .. "src/devices/bus/sbus/cgsix.cpp",
+ MAME_DIR .. "src/devices/bus/sbus/cgsix.h",
+ MAME_DIR .. "src/devices/bus/sbus/cgthree.cpp",
+ MAME_DIR .. "src/devices/bus/sbus/cgthree.h",
+ MAME_DIR .. "src/devices/bus/sbus/hme.cpp",
+ MAME_DIR .. "src/devices/bus/sbus/hme.h",
+ MAME_DIR .. "src/devices/bus/sbus/sunpc.cpp",
+ MAME_DIR .. "src/devices/bus/sbus/sunpc.h",
+ MAME_DIR .. "src/devices/bus/sbus/sbus.cpp",
+ MAME_DIR .. "src/devices/bus/sbus/sbus.h",
+ }
+end
+
+
+---------------------------------------------------
+--
--@src/devices/bus/scsi/scsi.h,BUSES["SCSI"] = true
---------------------------------------------------
-if (BUSES["SCSI"]~=null) then
+if BUSES["SCSI"] then
files {
MAME_DIR .. "src/devices/bus/scsi/scsi.cpp",
MAME_DIR .. "src/devices/bus/scsi/scsi.h",
@@ -4833,288 +5080,247 @@ if (BUSES["SCSI"]~=null) then
}
end
----------------------------------------------------
---
---@src/devices/bus/mackbd/mackbd.h,BUSES["MACKBD"] = true
----------------------------------------------------
-
-if (BUSES["MACKBD"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/mackbd/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/mackbd/keyboard.h",
- MAME_DIR .. "src/devices/bus/mackbd/mackbd.cpp",
- MAME_DIR .. "src/devices/bus/mackbd/mackbd.h",
- MAME_DIR .. "src/devices/bus/mackbd/pluskbd.cpp",
- MAME_DIR .. "src/devices/bus/mackbd/pluskbd.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/macpds/macpds.h,BUSES["MACPDS"] = true
+--@src/devices/bus/scv/slot.h,BUSES["SCV"] = true
---------------------------------------------------
-if (BUSES["MACPDS"]~=null) then
+if BUSES["SCV"] then
files {
- MAME_DIR .. "src/devices/bus/macpds/macpds.cpp",
- MAME_DIR .. "src/devices/bus/macpds/macpds.h",
- MAME_DIR .. "src/devices/bus/macpds/pds_tpdfpd.cpp",
- MAME_DIR .. "src/devices/bus/macpds/pds_tpdfpd.h",
- MAME_DIR .. "src/devices/bus/macpds/hyperdrive.cpp",
- MAME_DIR .. "src/devices/bus/macpds/hyperdrive.h",
+ MAME_DIR .. "src/devices/bus/scv/slot.cpp",
+ MAME_DIR .. "src/devices/bus/scv/slot.h",
+ MAME_DIR .. "src/devices/bus/scv/rom.cpp",
+ MAME_DIR .. "src/devices/bus/scv/rom.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/oricext/oricext.h,BUSES["ORICEXT"] = true
----------------------------------------------------
-if (BUSES["ORICEXT"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/oricext/oricext.cpp",
- MAME_DIR .. "src/devices/bus/oricext/oricext.h",
- MAME_DIR .. "src/devices/bus/oricext/jasmin.cpp",
- MAME_DIR .. "src/devices/bus/oricext/jasmin.h",
- MAME_DIR .. "src/devices/bus/oricext/microdisc.cpp",
- MAME_DIR .. "src/devices/bus/oricext/microdisc.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/a1bus/a1bus.h,BUSES["A1BUS"] = true
+--@src/devices/bus/sdk85/memexp.h,BUSES["SDK85"] = true
---------------------------------------------------
-if (BUSES["A1BUS"]~=null) then
+if BUSES["SDK85"] then
files {
- MAME_DIR .. "src/devices/bus/a1bus/a1bus.cpp",
- MAME_DIR .. "src/devices/bus/a1bus/a1bus.h",
- MAME_DIR .. "src/devices/bus/a1bus/a1cassette.cpp",
- MAME_DIR .. "src/devices/bus/a1bus/a1cassette.h",
- MAME_DIR .. "src/devices/bus/a1bus/a1cffa.cpp",
- MAME_DIR .. "src/devices/bus/a1bus/a1cffa.h",
+ MAME_DIR .. "src/devices/bus/sdk85/memexp.cpp",
+ MAME_DIR .. "src/devices/bus/sdk85/memexp.h",
+ MAME_DIR .. "src/devices/bus/sdk85/i8755.cpp",
+ MAME_DIR .. "src/devices/bus/sdk85/i8755.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/kim1/kim1bus.h,BUSES["KIM1BUS"] = true
+--@src/devices/bus/sega8/sega8_slot.h,BUSES["SEGA8"] = true
---------------------------------------------------
-if (BUSES["KIM1BUS"]~=null) then
+if BUSES["SEGA8"] then
files {
- MAME_DIR .. "src/devices/bus/kim1/cards.cpp",
- MAME_DIR .. "src/devices/bus/kim1/cards.h",
- MAME_DIR .. "src/devices/bus/kim1/kim1bus.cpp",
- MAME_DIR .. "src/devices/bus/kim1/kim1bus.h",
- MAME_DIR .. "src/devices/bus/kim1/k1008_vismem.cpp",
- MAME_DIR .. "src/devices/bus/kim1/k1008_vismem.h",
- MAME_DIR .. "src/devices/bus/kim1/k1016_16k.cpp",
- MAME_DIR .. "src/devices/bus/kim1/k1016_16k.h",
+ MAME_DIR .. "src/devices/bus/sega8/sega8_slot.cpp",
+ MAME_DIR .. "src/devices/bus/sega8/sega8_slot.h",
+ MAME_DIR .. "src/devices/bus/sega8/rom.cpp",
+ MAME_DIR .. "src/devices/bus/sega8/rom.h",
+ MAME_DIR .. "src/devices/bus/sega8/ccatch.cpp",
+ MAME_DIR .. "src/devices/bus/sega8/ccatch.h",
+ MAME_DIR .. "src/devices/bus/sega8/mgear.cpp",
+ MAME_DIR .. "src/devices/bus/sega8/mgear.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/amiga/keyboard/keyboard.h,BUSES["AMIGA_KEYBOARD"] = true
+--@src/devices/bus/segaai/segaai_exp.h,BUSES["SEGAAI"] = true
---------------------------------------------------
-if (BUSES["AMIGA_KEYBOARD"]~=null) then
+if BUSES["SEGAAI"] then
files {
- MAME_DIR .. "src/devices/bus/amiga/keyboard/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/keyboard.h",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/matrix.cpp",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/matrix.h",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/a1200.cpp",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/a1200.h",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/a2000.cpp",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/a2000.h",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/mitsumi.cpp",
- MAME_DIR .. "src/devices/bus/amiga/keyboard/mitsumi.h",
+ MAME_DIR .. "src/devices/bus/segaai/rom.cpp",
+ MAME_DIR .. "src/devices/bus/segaai/rom.h",
+ MAME_DIR .. "src/devices/bus/segaai/segaai_exp.cpp",
+ MAME_DIR .. "src/devices/bus/segaai/segaai_exp.h",
+ MAME_DIR .. "src/devices/bus/segaai/segaai_slot.cpp",
+ MAME_DIR .. "src/devices/bus/segaai/segaai_slot.h",
+ MAME_DIR .. "src/devices/bus/segaai/soundbox.cpp",
+ MAME_DIR .. "src/devices/bus/segaai/soundbox.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/amiga/zorro/zorro.h,BUSES["ZORRO"] = true
+--@src/devices/bus/sg1000_exp/sg1000exp.h,BUSES["SG1000_EXP"] = true
---------------------------------------------------
-if (BUSES["ZORRO"]~=null) then
+if BUSES["SG1000_EXP"] then
files {
- MAME_DIR .. "src/devices/bus/amiga/zorro/zorro.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/zorro.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/cards.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/cards.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2052.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2052.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2058.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2058.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2065.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2065.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2091.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2091.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2232.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/a2232.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/buddha.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/buddha.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/merlin.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/merlin.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/oktagon2008.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/oktagon2008.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/picasso2.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/picasso2.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/rainbow2.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/rainbow2.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/ripple.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/ripple.h",
- MAME_DIR .. "src/devices/bus/amiga/zorro/toccata.cpp",
- MAME_DIR .. "src/devices/bus/amiga/zorro/toccata.h",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/fm_unit.cpp",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/fm_unit.h",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/kblink.cpp",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/kblink.h",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sg1000exp.cpp",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sg1000exp.h",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100.cpp",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100.h",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100prn.cpp",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sk1100prn.h",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sp400.cpp",
+ MAME_DIR .. "src/devices/bus/sg1000_exp/sp400.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/sunkbd/sunkbd.h,BUSES["SUNKBD"] = true
+--@src/devices/bus/sms_ctrl/smsctrl.h,BUSES["SMS_CTRL"] = true
---------------------------------------------------
-if (BUSES["SUNKBD"]~=null) then
+if BUSES["SMS_CTRL"] then
files {
- MAME_DIR .. "src/devices/bus/sunkbd/hlekbd.cpp",
- MAME_DIR .. "src/devices/bus/sunkbd/hlekbd.h",
- MAME_DIR .. "src/devices/bus/sunkbd/sunkbd.cpp",
- MAME_DIR .. "src/devices/bus/sunkbd/sunkbd.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/controllers.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/controllers.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/diypaddle.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/diypaddle.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/hypershot.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/hypershot.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/graphic.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/graphic.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/joypad.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/joypad.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/lphaser.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/lphaser.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/md6bt.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/md6bt.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/mdpad.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/mdpad.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/mouse.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/multitap.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/multitap.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/paddle.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/paddle.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/rfu.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/rfu.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/rs232adapt.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/rs232adapt.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/smsctrl.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/smsctrl.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/sports.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/sports.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/sportsjp.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/sportsjp.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/teamplayer.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/teamplayer.h",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/xe1ap.cpp",
+ MAME_DIR .. "src/devices/bus/sms_ctrl/xe1ap.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/sunmouse/sunmouse.h,BUSES["SUNMOUSE"] = true
+--@src/devices/bus/sms_exp/smsexp.h,BUSES["SMS_EXP"] = true
---------------------------------------------------
-if (BUSES["SUNMOUSE"]~=null) then
+if BUSES["SMS_EXP"] then
files {
- MAME_DIR .. "src/devices/bus/sunmouse/hlemouse.cpp",
- MAME_DIR .. "src/devices/bus/sunmouse/hlemouse.h",
- MAME_DIR .. "src/devices/bus/sunmouse/sunmouse.cpp",
- MAME_DIR .. "src/devices/bus/sunmouse/sunmouse.h",
+ MAME_DIR .. "src/devices/bus/sms_exp/smsexp.cpp",
+ MAME_DIR .. "src/devices/bus/sms_exp/smsexp.h",
+ MAME_DIR .. "src/devices/bus/sms_exp/gender.cpp",
+ MAME_DIR .. "src/devices/bus/sms_exp/gender.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/sbus/sbus.h,BUSES["SBUS"] = true
+--@src/devices/bus/snes/snes_slot.h,BUSES["SNES"] = true
---------------------------------------------------
-if (BUSES["SBUS"]~=null) then
+if BUSES["SNES"] then
files {
- MAME_DIR .. "src/devices/bus/sbus/artecon.cpp",
- MAME_DIR .. "src/devices/bus/sbus/artecon.h",
- MAME_DIR .. "src/devices/bus/sbus/bwtwo.cpp",
- MAME_DIR .. "src/devices/bus/sbus/bwtwo.h",
- MAME_DIR .. "src/devices/bus/sbus/cgsix.cpp",
- MAME_DIR .. "src/devices/bus/sbus/cgsix.h",
- MAME_DIR .. "src/devices/bus/sbus/cgthree.cpp",
- MAME_DIR .. "src/devices/bus/sbus/cgthree.h",
- MAME_DIR .. "src/devices/bus/sbus/hme.cpp",
- MAME_DIR .. "src/devices/bus/sbus/hme.h",
- MAME_DIR .. "src/devices/bus/sbus/sunpc.cpp",
- MAME_DIR .. "src/devices/bus/sbus/sunpc.h",
- MAME_DIR .. "src/devices/bus/sbus/sbus.cpp",
- MAME_DIR .. "src/devices/bus/sbus/sbus.h",
+ MAME_DIR .. "src/devices/bus/snes/snes_slot.cpp",
+ MAME_DIR .. "src/devices/bus/snes/snes_slot.h",
+ MAME_DIR .. "src/devices/bus/snes/snes_carts.cpp",
+ MAME_DIR .. "src/devices/bus/snes/snes_carts.h",
+ MAME_DIR .. "src/devices/bus/snes/bsx.cpp",
+ MAME_DIR .. "src/devices/bus/snes/bsx.h",
+ MAME_DIR .. "src/devices/bus/snes/event.cpp",
+ MAME_DIR .. "src/devices/bus/snes/event.h",
+ MAME_DIR .. "src/devices/bus/snes/profighter.cpp",
+ MAME_DIR .. "src/devices/bus/snes/profighter.h",
+ MAME_DIR .. "src/devices/bus/snes/rom.cpp",
+ MAME_DIR .. "src/devices/bus/snes/rom.h",
+ MAME_DIR .. "src/devices/bus/snes/rom21.cpp",
+ MAME_DIR .. "src/devices/bus/snes/rom21.h",
+ MAME_DIR .. "src/devices/bus/snes/sa1.cpp",
+ MAME_DIR .. "src/devices/bus/snes/sa1.h",
+ MAME_DIR .. "src/devices/bus/snes/sdd1.cpp",
+ MAME_DIR .. "src/devices/bus/snes/sdd1.h",
+ MAME_DIR .. "src/devices/bus/snes/sfx.cpp",
+ MAME_DIR .. "src/devices/bus/snes/sfx.h",
+ MAME_DIR .. "src/devices/bus/snes/sgb.cpp",
+ MAME_DIR .. "src/devices/bus/snes/sgb.h",
+ MAME_DIR .. "src/devices/bus/snes/spc7110.cpp",
+ MAME_DIR .. "src/devices/bus/snes/spc7110.h",
+ MAME_DIR .. "src/devices/bus/snes/st018.cpp",
+ MAME_DIR .. "src/devices/bus/snes/st018.h",
+ MAME_DIR .. "src/devices/bus/snes/sufami.cpp",
+ MAME_DIR .. "src/devices/bus/snes/sufami.h",
+ MAME_DIR .. "src/devices/bus/snes/upd.cpp",
+ MAME_DIR .. "src/devices/bus/snes/upd.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/qbus/qbus.h,BUSES["QBUS"] = true
+--@src/devices/bus/snes_ctrl/ctrl.h,BUSES["SNES_CTRL"] = true
---------------------------------------------------
-if (BUSES["QBUS"]~=null) then
+if BUSES["SNES_CTRL"] then
files {
- MAME_DIR .. "src/devices/bus/qbus/bk_altpro.cpp",
- MAME_DIR .. "src/devices/bus/qbus/bk_altpro.h",
- MAME_DIR .. "src/devices/bus/qbus/bk_irps.cpp",
- MAME_DIR .. "src/devices/bus/qbus/bk_irps.h",
- MAME_DIR .. "src/devices/bus/qbus/bk_kmd.cpp",
- MAME_DIR .. "src/devices/bus/qbus/bk_kmd.h",
- MAME_DIR .. "src/devices/bus/qbus/bk_samara.cpp",
- MAME_DIR .. "src/devices/bus/qbus/bk_samara.h",
- MAME_DIR .. "src/devices/bus/qbus/dsd4432.cpp",
- MAME_DIR .. "src/devices/bus/qbus/dsd4432.h",
- MAME_DIR .. "src/devices/bus/qbus/dvk_dwhle.cpp",
- MAME_DIR .. "src/devices/bus/qbus/dvk_dwhle.h",
- MAME_DIR .. "src/devices/bus/qbus/dvk_kgd.cpp",
- MAME_DIR .. "src/devices/bus/qbus/dvk_kgd.h",
- MAME_DIR .. "src/devices/bus/qbus/dvk_kmd.cpp",
- MAME_DIR .. "src/devices/bus/qbus/dvk_kmd.h",
- MAME_DIR .. "src/devices/bus/qbus/dvk_ktlk.cpp",
- MAME_DIR .. "src/devices/bus/qbus/dvk_ktlk.h",
- MAME_DIR .. "src/devices/bus/qbus/dvk_mx.cpp",
- MAME_DIR .. "src/devices/bus/qbus/dvk_mx.h",
- MAME_DIR .. "src/devices/bus/qbus/pc11.cpp",
- MAME_DIR .. "src/devices/bus/qbus/pc11.h",
- MAME_DIR .. "src/devices/bus/qbus/qbus.cpp",
- MAME_DIR .. "src/devices/bus/qbus/qbus.h",
- MAME_DIR .. "src/devices/bus/qbus/qg640.cpp",
- MAME_DIR .. "src/devices/bus/qbus/qg640.h",
- MAME_DIR .. "src/devices/bus/qbus/qtx.cpp",
- MAME_DIR .. "src/devices/bus/qbus/qtx.h",
- MAME_DIR .. "src/devices/bus/qbus/tdl12.cpp",
- MAME_DIR .. "src/devices/bus/qbus/tdl12.h",
- MAME_DIR .. "src/devices/bus/qbus/terak_v.cpp",
- MAME_DIR .. "src/devices/bus/qbus/terak_v.h",
- MAME_DIR .. "src/devices/bus/qbus/uknc_kmd.cpp",
- MAME_DIR .. "src/devices/bus/qbus/uknc_kmd.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/ctrl.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/ctrl.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/bcbattle.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/bcbattle.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/joypad.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/joypad.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/miracle.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/miracle.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/mouse.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/multitap.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/multitap.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/pachinko.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/pachinko.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/sscope.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/sscope.h",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/twintap.cpp",
+ MAME_DIR .. "src/devices/bus/snes_ctrl/twintap.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/ql/exp.h,BUSES["QL"] = true
+--@src/devices/bus/spc1000/exp.h,BUSES["SPC1000"] = true
---------------------------------------------------
-if (BUSES["QL"]~=null) then
+if BUSES["SPC1000"] then
files {
- MAME_DIR .. "src/devices/bus/ql/exp.cpp",
- MAME_DIR .. "src/devices/bus/ql/exp.h",
- MAME_DIR .. "src/devices/bus/ql/cst_qdisc.cpp",
- MAME_DIR .. "src/devices/bus/ql/cst_qdisc.h",
- MAME_DIR .. "src/devices/bus/ql/cst_q_plus4.cpp",
- MAME_DIR .. "src/devices/bus/ql/cst_q_plus4.h",
- MAME_DIR .. "src/devices/bus/ql/cumana_fdi.cpp",
- MAME_DIR .. "src/devices/bus/ql/cumana_fdi.h",
- MAME_DIR .. "src/devices/bus/ql/kempston_di.cpp",
- MAME_DIR .. "src/devices/bus/ql/kempston_di.h",
- MAME_DIR .. "src/devices/bus/ql/miracle_gold_card.cpp",
- MAME_DIR .. "src/devices/bus/ql/miracle_gold_card.h",
- MAME_DIR .. "src/devices/bus/ql/mp_fdi.cpp",
- MAME_DIR .. "src/devices/bus/ql/mp_fdi.h",
- MAME_DIR .. "src/devices/bus/ql/opd_basic_master.cpp",
- MAME_DIR .. "src/devices/bus/ql/opd_basic_master.h",
- MAME_DIR .. "src/devices/bus/ql/pcml_qdisk.cpp",
- MAME_DIR .. "src/devices/bus/ql/pcml_qdisk.h",
- MAME_DIR .. "src/devices/bus/ql/qubide.cpp",
- MAME_DIR .. "src/devices/bus/ql/qubide.h",
- MAME_DIR .. "src/devices/bus/ql/sandy_superdisk.cpp",
- MAME_DIR .. "src/devices/bus/ql/sandy_superdisk.h",
- MAME_DIR .. "src/devices/bus/ql/sandy_superqboard.cpp",
- MAME_DIR .. "src/devices/bus/ql/sandy_superqboard.h",
- MAME_DIR .. "src/devices/bus/ql/trumpcard.cpp",
- MAME_DIR .. "src/devices/bus/ql/trumpcard.h",
- MAME_DIR .. "src/devices/bus/ql/rom.cpp",
- MAME_DIR .. "src/devices/bus/ql/rom.h",
- MAME_DIR .. "src/devices/bus/ql/miracle_hd.cpp",
- MAME_DIR .. "src/devices/bus/ql/miracle_hd.h",
- MAME_DIR .. "src/devices/bus/ql/std.cpp",
- MAME_DIR .. "src/devices/bus/ql/std.h",
+ MAME_DIR .. "src/devices/bus/spc1000/exp.cpp",
+ MAME_DIR .. "src/devices/bus/spc1000/exp.h",
+ MAME_DIR .. "src/devices/bus/spc1000/fdd.cpp",
+ MAME_DIR .. "src/devices/bus/spc1000/fdd.h",
+ MAME_DIR .. "src/devices/bus/spc1000/vdp.cpp",
+ MAME_DIR .. "src/devices/bus/spc1000/vdp.h",
}
end
+
---------------------------------------------------
--
--@src/devices/bus/spectrum/exp.h,BUSES["SPECTRUM"] = true
---------------------------------------------------
-if (BUSES["SPECTRUM"]~=null) then
+if BUSES["SPECTRUM"] then
files {
MAME_DIR .. "src/devices/bus/spectrum/exp.cpp",
MAME_DIR .. "src/devices/bus/spectrum/exp.h",
@@ -5186,7 +5392,7 @@ end
--@src/devices/bus/spectrum/ay/slot.h,BUSES["SPECTRUM_AY"] = true
---------------------------------------------------
-if (BUSES["SPECTRUM_AY"]~=null) then
+if BUSES["SPECTRUM_AY"] then
files {
MAME_DIR .. "src/devices/bus/spectrum/ay/slot.cpp",
MAME_DIR .. "src/devices/bus/spectrum/ay/slot.h",
@@ -5200,7 +5406,7 @@ end
--@src/devices/bus/spectrum/dma/slot.h,BUSES["SPECTRUM_DMA"] = true
---------------------------------------------------
-if (BUSES["SPECTRUM_DMA"]~=null) then
+if BUSES["SPECTRUM_DMA"] then
files {
MAME_DIR .. "src/devices/bus/spectrum/dma/slot.cpp",
MAME_DIR .. "src/devices/bus/spectrum/dma/slot.h",
@@ -5214,7 +5420,7 @@ end
--@src/devices/bus/spectrum/zxbus/bus.h,BUSES["SPECTRUM_ZXBUS"] = true
---------------------------------------------------
-if (BUSES["SPECTRUM_ZXBUS"]~=null) then
+if BUSES["SPECTRUM_ZXBUS"] then
files {
MAME_DIR .. "src/devices/bus/spectrum/zxbus/bus.cpp",
MAME_DIR .. "src/devices/bus/spectrum/zxbus/bus.h",
@@ -5227,224 +5433,99 @@ if (BUSES["SPECTRUM_ZXBUS"]~=null) then
}
end
----------------------------------------------------
---
---@src/devices/bus/uts_kbd/uts_kbd.h,BUSES["UTS_KBD"] = true
----------------------------------------------------
-
-if (BUSES["UTS_KBD"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/uts_kbd/400kbd.cpp",
- MAME_DIR .. "src/devices/bus/uts_kbd/400kbd.h",
- MAME_DIR .. "src/devices/bus/uts_kbd/extw.cpp",
- MAME_DIR .. "src/devices/bus/uts_kbd/extw.h",
- MAME_DIR .. "src/devices/bus/uts_kbd/uts_kbd.cpp",
- MAME_DIR .. "src/devices/bus/uts_kbd/uts_kbd.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/vsmile/vsmile_ctrl.h,BUSES["VSMILE"] = true
---@src/devices/bus/vsmile/vsmile_slot.h,BUSES["VSMILE"] = true
+--@src/devices/bus/ss50/interface.h,BUSES["SS50"] = true
---------------------------------------------------
-if (BUSES["VSMILE"]~=null) then
+if BUSES["SS50"] then
files {
- MAME_DIR .. "src/devices/bus/vsmile/vsmile_ctrl.cpp",
- MAME_DIR .. "src/devices/bus/vsmile/vsmile_ctrl.h",
- MAME_DIR .. "src/devices/bus/vsmile/pad.cpp",
- MAME_DIR .. "src/devices/bus/vsmile/pad.h",
- MAME_DIR .. "src/devices/bus/vsmile/mat.cpp",
- MAME_DIR .. "src/devices/bus/vsmile/mat.h",
- MAME_DIR .. "src/devices/bus/vsmile/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/vsmile/keyboard.h",
- MAME_DIR .. "src/devices/bus/vsmile/vsmile_slot.cpp",
- MAME_DIR .. "src/devices/bus/vsmile/vsmile_slot.h",
- MAME_DIR .. "src/devices/bus/vsmile/rom.cpp",
- MAME_DIR .. "src/devices/bus/vsmile/rom.h",
+ MAME_DIR .. "src/devices/bus/ss50/interface.cpp",
+ MAME_DIR .. "src/devices/bus/ss50/interface.h",
+ MAME_DIR .. "src/devices/bus/ss50/dc5.cpp",
+ MAME_DIR .. "src/devices/bus/ss50/dc5.h",
+ MAME_DIR .. "src/devices/bus/ss50/mpc.cpp",
+ MAME_DIR .. "src/devices/bus/ss50/mpc.h",
+ MAME_DIR .. "src/devices/bus/ss50/mps.cpp",
+ MAME_DIR .. "src/devices/bus/ss50/mps.h",
+ MAME_DIR .. "src/devices/bus/ss50/mps2.cpp",
+ MAME_DIR .. "src/devices/bus/ss50/mps2.h",
+ MAME_DIR .. "src/devices/bus/ss50/mpt.cpp",
+ MAME_DIR .. "src/devices/bus/ss50/mpt.h",
+ MAME_DIR .. "src/devices/bus/ss50/piaide.cpp",
+ MAME_DIR .. "src/devices/bus/ss50/piaide.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/vtech/memexp/memexp.h,BUSES["VTECH_MEMEXP"] = true
----------------------------------------------------
-
-if (BUSES["VTECH_MEMEXP"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/vtech/memexp/memexp.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/memexp.h",
- MAME_DIR .. "src/devices/bus/vtech/memexp/carts.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/carts.h",
- MAME_DIR .. "src/devices/bus/vtech/memexp/floppy.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/floppy.h",
- MAME_DIR .. "src/devices/bus/vtech/memexp/memory.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/memory.h",
- MAME_DIR .. "src/devices/bus/vtech/memexp/rs232.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/rs232.h",
- MAME_DIR .. "src/devices/bus/vtech/memexp/rtty.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/rtty.h",
- MAME_DIR .. "src/devices/bus/vtech/memexp/sdloader.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/sdloader.h",
- MAME_DIR .. "src/devices/bus/vtech/memexp/wordpro.cpp",
- MAME_DIR .. "src/devices/bus/vtech/memexp/wordpro.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/vtech/ioexp/ioexp.h,BUSES["VTECH_IOEXP"] = true
+--@src/devices/bus/st/stcart.h,BUSES["ST"] = true
---------------------------------------------------
-if (BUSES["VTECH_IOEXP"]~=null) then
+if BUSES["ST"] then
files {
- MAME_DIR .. "src/devices/bus/vtech/ioexp/ioexp.cpp",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/ioexp.h",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/carts.cpp",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/carts.h",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/lpen.cpp",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/lpen.h",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/joystick.cpp",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/joystick.h",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/printer.cpp",
- MAME_DIR .. "src/devices/bus/vtech/ioexp/printer.h",
- }
-end
-
----------------------------------------------------
---
---@src/devices/bus/wswan/slot.h,BUSES["WSWAN"] = true
----------------------------------------------------
-
-if (BUSES["WSWAN"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/wswan/slot.cpp",
- MAME_DIR .. "src/devices/bus/wswan/slot.h",
- MAME_DIR .. "src/devices/bus/wswan/rom.cpp",
- MAME_DIR .. "src/devices/bus/wswan/rom.h",
+ MAME_DIR .. "src/devices/bus/st/stcart.cpp",
+ MAME_DIR .. "src/devices/bus/st/stcart.h",
+ MAME_DIR .. "src/devices/bus/st/replay.cpp",
+ MAME_DIR .. "src/devices/bus/st/replay.h",
+ MAME_DIR .. "src/devices/bus/st/rom.cpp",
+ MAME_DIR .. "src/devices/bus/st/rom.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/psx/ctlrport.h,BUSES["PSX_CONTROLLER"] = true
----------------------------------------------------
-
-if (BUSES["PSX_CONTROLLER"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/psx/ctlrport.cpp",
- MAME_DIR .. "src/devices/bus/psx/ctlrport.h",
- MAME_DIR .. "src/devices/bus/psx/analogue.cpp",
- MAME_DIR .. "src/devices/bus/psx/analogue.h",
- MAME_DIR .. "src/devices/bus/psx/multitap.cpp",
- MAME_DIR .. "src/devices/bus/psx/multitap.h",
- MAME_DIR .. "src/devices/bus/psx/memcard.cpp",
- MAME_DIR .. "src/devices/bus/psx/memcard.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/psx/parallel.h,BUSES["PSX_PARALLEL"] = true
+--@src/devices/bus/sunkbd/sunkbd.h,BUSES["SUNKBD"] = true
---------------------------------------------------
-if (BUSES["PSX_PARALLEL"]~=null) then
+if BUSES["SUNKBD"] then
files {
- MAME_DIR .. "src/devices/bus/psx/parallel.cpp",
- MAME_DIR .. "src/devices/bus/psx/parallel.h",
- MAME_DIR .. "src/devices/bus/psx/gamebooster.cpp",
- MAME_DIR .. "src/devices/bus/psx/gamebooster.h",
+ MAME_DIR .. "src/devices/bus/sunkbd/hlekbd.cpp",
+ MAME_DIR .. "src/devices/bus/sunkbd/hlekbd.h",
+ MAME_DIR .. "src/devices/bus/sunkbd/sunkbd.cpp",
+ MAME_DIR .. "src/devices/bus/sunkbd/sunkbd.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/nasbus/nasbus.h,BUSES["NASBUS"] = true
+--@src/devices/bus/sunmouse/sunmouse.h,BUSES["SUNMOUSE"] = true
---------------------------------------------------
-if (BUSES["NASBUS"]~=null) then
+if BUSES["SUNMOUSE"] then
files {
- MAME_DIR .. "src/devices/bus/nasbus/nasbus.cpp",
- MAME_DIR .. "src/devices/bus/nasbus/nasbus.h",
- MAME_DIR .. "src/devices/bus/nasbus/cards.cpp",
- MAME_DIR .. "src/devices/bus/nasbus/cards.h",
- MAME_DIR .. "src/devices/bus/nasbus/avc.cpp",
- MAME_DIR .. "src/devices/bus/nasbus/avc.h",
- MAME_DIR .. "src/devices/bus/nasbus/floppy.cpp",
- MAME_DIR .. "src/devices/bus/nasbus/floppy.h",
+ MAME_DIR .. "src/devices/bus/sunmouse/hlemouse.cpp",
+ MAME_DIR .. "src/devices/bus/sunmouse/hlemouse.h",
+ MAME_DIR .. "src/devices/bus/sunmouse/sunmouse.cpp",
+ MAME_DIR .. "src/devices/bus/sunmouse/sunmouse.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/cgenie/expansion/expansion.h,BUSES["CGENIE_EXPANSION"] = true
----------------------------------------------------
-
-if (BUSES["CGENIE_EXPANSION"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/cgenie/expansion/expansion.cpp",
- MAME_DIR .. "src/devices/bus/cgenie/expansion/expansion.h",
- MAME_DIR .. "src/devices/bus/cgenie/expansion/carts.cpp",
- MAME_DIR .. "src/devices/bus/cgenie/expansion/carts.h",
- MAME_DIR .. "src/devices/bus/cgenie/expansion/floppy.cpp",
- MAME_DIR .. "src/devices/bus/cgenie/expansion/floppy.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/cgenie/parallel/parallel.h,BUSES["CGENIE_PARALLEL"] = true
+--@src/devices/bus/supracan/slot.h,BUSES["SUPRACAN"] = true
---------------------------------------------------
-if (BUSES["CGENIE_PARALLEL"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/cgenie/parallel/parallel.cpp",
- MAME_DIR .. "src/devices/bus/cgenie/parallel/parallel.h",
- MAME_DIR .. "src/devices/bus/cgenie/parallel/carts.cpp",
- MAME_DIR .. "src/devices/bus/cgenie/parallel/carts.h",
- MAME_DIR .. "src/devices/bus/cgenie/parallel/joystick.cpp",
- MAME_DIR .. "src/devices/bus/cgenie/parallel/joystick.h",
- MAME_DIR .. "src/devices/bus/cgenie/parallel/printer.cpp",
- MAME_DIR .. "src/devices/bus/cgenie/parallel/printer.h",
- }
-end
-
----------------------------------------------------
---
---@src/devices/bus/m5/slot.h,BUSES["M5"] = true
----------------------------------------------------
-if (BUSES["M5"]~=null) then
+if BUSES["SUPRACAN"] then
files {
- MAME_DIR .. "src/devices/bus/m5/slot.cpp",
- MAME_DIR .. "src/devices/bus/m5/slot.h",
- MAME_DIR .. "src/devices/bus/m5/rom.cpp",
- MAME_DIR .. "src/devices/bus/m5/rom.h",
+ MAME_DIR .. "src/devices/bus/supracan/slot.cpp",
+ MAME_DIR .. "src/devices/bus/supracan/slot.h",
+ MAME_DIR .. "src/devices/bus/supracan/rom.cpp",
+ MAME_DIR .. "src/devices/bus/supracan/rom.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/newbrain/exp.h,BUSES["NEWBRAIN"] = true
----------------------------------------------------
-
-if (BUSES["NEWBRAIN"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/newbrain/exp.cpp",
- MAME_DIR .. "src/devices/bus/newbrain/exp.h",
- MAME_DIR .. "src/devices/bus/newbrain/eim.cpp",
- MAME_DIR .. "src/devices/bus/newbrain/eim.h",
- MAME_DIR .. "src/devices/bus/newbrain/fdc.cpp",
- MAME_DIR .. "src/devices/bus/newbrain/fdc.h",
- }
-end
---------------------------------------------------
--
--@src/devices/bus/svi3x8/expander/expander.h,BUSES["SVI_EXPANDER"] = true
---------------------------------------------------
-if (BUSES["SVI_EXPANDER"]~=null) then
+if BUSES["SVI_EXPANDER"] then
files {
MAME_DIR .. "src/devices/bus/svi3x8/expander/expander.cpp",
MAME_DIR .. "src/devices/bus/svi3x8/expander/expander.h",
@@ -5464,7 +5545,7 @@ end
--@src/devices/bus/svi3x8/slot/slot.h,BUSES["SVI_SLOT"] = true
---------------------------------------------------
-if (BUSES["SVI_SLOT"]~=null) then
+if BUSES["SVI_SLOT"] then
files {
MAME_DIR .. "src/devices/bus/svi3x8/slot/slot.cpp",
MAME_DIR .. "src/devices/bus/svi3x8/slot/slot.h",
@@ -5485,808 +5566,796 @@ if (BUSES["SVI_SLOT"]~=null) then
}
end
+
---------------------------------------------------
--
---@src/devices/bus/hp80_io/hp80_io.h,BUSES["HP80_IO"] = true
+--@src/devices/bus/tanbus/tanbus.h,BUSES["TANBUS"] = true
---------------------------------------------------
-if (BUSES["HP80_IO"]~=null) then
+if BUSES["TANBUS"] then
files {
- MAME_DIR .. "src/devices/bus/hp80_io/hp80_io.cpp",
- MAME_DIR .. "src/devices/bus/hp80_io/hp80_io.h",
- MAME_DIR .. "src/devices/bus/hp80_io/82900.cpp",
- MAME_DIR .. "src/devices/bus/hp80_io/82900.h",
- MAME_DIR .. "src/devices/bus/hp80_io/82937.cpp",
- MAME_DIR .. "src/devices/bus/hp80_io/82937.h",
- MAME_DIR .. "src/devices/bus/hp80_io/82939.cpp",
- MAME_DIR .. "src/devices/bus/hp80_io/82939.h",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/keyboard.h",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt006.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt006.h",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt009.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/mt009.h",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/spinveti.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/keyboard/spinveti.h",
+ MAME_DIR .. "src/devices/bus/tanbus/bullsnd.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/bullsnd.h",
+ MAME_DIR .. "src/devices/bus/tanbus/etirtc.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/etirtc.h",
+ MAME_DIR .. "src/devices/bus/tanbus/etisnd.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/etisnd.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tanbus.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tanbus.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tanex.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tanex.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tandos.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tandos.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tanhrg.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tanhrg.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tanram.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tanram.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tanrtc.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tanrtc.h",
+ MAME_DIR .. "src/devices/bus/tanbus/mpvdu.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/mpvdu.h",
+ MAME_DIR .. "src/devices/bus/tanbus/ra32k.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/ra32k.h",
+ MAME_DIR .. "src/devices/bus/tanbus/radisc.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/radisc.h",
+ MAME_DIR .. "src/devices/bus/tanbus/ravdu.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/ravdu.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tug64k.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tug64k.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tug8082.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tug8082.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tugcombo.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tugcombo.h",
+ MAME_DIR .. "src/devices/bus/tanbus/tugpgm.cpp",
+ MAME_DIR .. "src/devices/bus/tanbus/tugpgm.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/hp9845_io/hp9845_io.h,BUSES["HP9845_IO"] = true
+--@src/devices/bus/technics/kn5000/kn5000_extension.h,BUSES["TECHNICS_KN5000"] = true
---------------------------------------------------
-if (BUSES["HP9845_IO"]~=null) then
+if BUSES["TECHNICS_KN5000"] then
files {
- MAME_DIR .. "src/devices/bus/hp9845_io/hp9845_io.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/hp9845_io.h",
- MAME_DIR .. "src/devices/bus/hp9845_io/98032.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/98032.h",
- MAME_DIR .. "src/devices/bus/hp9845_io/98034.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/98034.h",
- MAME_DIR .. "src/devices/bus/hp9845_io/98035.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/98035.h",
- MAME_DIR .. "src/devices/bus/hp9845_io/98036.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/98036.h",
- MAME_DIR .. "src/devices/bus/hp9845_io/98046.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/98046.h",
- MAME_DIR .. "src/devices/bus/hp9845_io/hp9871.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/hp9871.h",
- MAME_DIR .. "src/devices/bus/hp9845_io/hp9885.cpp",
- MAME_DIR .. "src/devices/bus/hp9845_io/hp9885.h",
+ MAME_DIR .. "src/devices/bus/technics/kn5000/kn5000_extension.cpp",
+ MAME_DIR .. "src/devices/bus/technics/kn5000/kn5000_extension.h",
+ MAME_DIR .. "src/devices/bus/technics/kn5000/hdae5000.cpp",
+ MAME_DIR .. "src/devices/bus/technics/kn5000/hdae5000.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/hp_ipc_io/hp_ipc_io.h,BUSES["HP_IPC_IO"] = true
+--@src/devices/bus/thomson/extension.h,BUSES["THOMSON"] = true
---------------------------------------------------
-if (BUSES["HP_IPC_IO"]~=null) then
+if BUSES["THOMSON"] then
files {
- MAME_DIR .. "src/devices/bus/hp_ipc_io/hp_ipc_io.cpp",
- MAME_DIR .. "src/devices/bus/hp_ipc_io/hp_ipc_io.h",
- MAME_DIR .. "src/devices/bus/hp_ipc_io/82919.cpp",
- MAME_DIR .. "src/devices/bus/hp_ipc_io/82919.h",
+ MAME_DIR .. "src/devices/bus/thomson/extension.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/extension.h",
+ MAME_DIR .. "src/devices/bus/thomson/cc90_232.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/cc90_232.h",
+ MAME_DIR .. "src/devices/bus/thomson/cd90_015.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/cd90_015.h",
+ MAME_DIR .. "src/devices/bus/thomson/cq90_028.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/cq90_028.h",
+ MAME_DIR .. "src/devices/bus/thomson/cd90_351.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/cd90_351.h",
+ MAME_DIR .. "src/devices/bus/thomson/cd90_640.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/cd90_640.h",
+ MAME_DIR .. "src/devices/bus/thomson/md90_120.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/md90_120.h",
+ MAME_DIR .. "src/devices/bus/thomson/midipak.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/midipak.h",
+ MAME_DIR .. "src/devices/bus/thomson/nanoreseau.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/nanoreseau.h",
+ MAME_DIR .. "src/devices/bus/thomson/rf57_932.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/rf57_932.h",
+ MAME_DIR .. "src/devices/bus/thomson/speech.cpp",
+ MAME_DIR .. "src/devices/bus/thomson/speech.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/compis/graphics.h,BUSES["COMPIS_GRAPHICS"] = true
+--@src/devices/bus/ti8x/ti8x.h,BUSES["TI8X"] = true
---------------------------------------------------
-if (BUSES["COMPIS_GRAPHICS"]~=null) then
+if BUSES["TI8X"] then
files {
- MAME_DIR .. "src/devices/bus/compis/graphics.cpp",
- MAME_DIR .. "src/devices/bus/compis/graphics.h",
- MAME_DIR .. "src/devices/bus/compis/hrg.cpp",
- MAME_DIR .. "src/devices/bus/compis/hrg.h",
+ MAME_DIR .. "src/devices/bus/ti8x/bitsocket.cpp",
+ MAME_DIR .. "src/devices/bus/ti8x/bitsocket.h",
+ MAME_DIR .. "src/devices/bus/ti8x/graphlinkhle.cpp",
+ MAME_DIR .. "src/devices/bus/ti8x/graphlinkhle.h",
+ MAME_DIR .. "src/devices/bus/ti8x/teeconn.cpp",
+ MAME_DIR .. "src/devices/bus/ti8x/teeconn.h",
+ MAME_DIR .. "src/devices/bus/ti8x/ti8x.cpp",
+ MAME_DIR .. "src/devices/bus/ti8x/ti8x.h",
+ MAME_DIR .. "src/devices/bus/ti8x/tispeaker.cpp",
+ MAME_DIR .. "src/devices/bus/ti8x/tispeaker.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/pc1512/mouse.h,BUSES["PC1512"] = true
+--@src/devices/bus/ti99/colorbus/colorbus.h,BUSES["TI99"] = true
+--@src/devices/bus/ti99/gromport/cartridges.h,BUSES["TI99"] = true
+--@src/devices/bus/ti99/joyport/joyport.h,BUSES["TI99"] = true
+--@src/devices/bus/ti99/peb/peribox.h,BUSES["TI99"] = true
+--@src/devices/bus/ti99/internal/genboard.h,BUSES["TI99"] = true
---------------------------------------------------
-if (BUSES["PC1512"]~=null) then
+if BUSES["TI99"] then
files {
- MAME_DIR .. "src/devices/bus/pc1512/mouse.cpp",
- MAME_DIR .. "src/devices/bus/pc1512/mouse.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/992board.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/992board.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/998board.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/998board.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/buffram.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/buffram.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/datamux.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/datamux.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/evpcconn.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/evpcconn.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/genboard.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/genboard.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/genkbd.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/genkbd.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/ioport.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/ioport.h",
+ MAME_DIR .. "src/devices/bus/ti99/internal/splitter.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/internal/splitter.h",
+ MAME_DIR .. "src/devices/bus/ti99/colorbus/busmouse.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/colorbus/busmouse.h",
+ MAME_DIR .. "src/devices/bus/ti99/colorbus/colorbus.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/colorbus/colorbus.h",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/gromport.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/gromport.h",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/cartridges.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/cartridges.h",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/gkracker.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/gkracker.h",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/multiconn.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/multiconn.h",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/singleconn.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/gromport/singleconn.h",
+ MAME_DIR .. "src/devices/bus/ti99/joyport/handset.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/joyport/handset.h",
+ MAME_DIR .. "src/devices/bus/ti99/joyport/joyport.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/joyport/joyport.h",
+ MAME_DIR .. "src/devices/bus/ti99/joyport/mecmouse.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/joyport/mecmouse.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/peribox.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/peribox.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/bwg.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/bwg.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/cc_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/cc_fdc.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/myarcfdc.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/myarcfdc.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/evpc.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/evpc.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/forti.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/forti.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/hfdc.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/hfdc.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/horizon.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/horizon.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/hsgpl.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/hsgpl.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/memex.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/memex.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/myarcmem.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/myarcmem.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/pcode.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/pcode.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/pgram.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/pgram.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/samsmem.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/samsmem.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/scsicard.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/scsicard.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/sidmaster.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/sidmaster.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/speechadapter.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/speechadapter.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/ti_32kmem.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/ti_32kmem.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/ti_fdc.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/ti_fdc.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/ti_rs232.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/ti_rs232.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/tipi.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/tipi.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/tn_ide.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/tn_ide.h",
+ MAME_DIR .. "src/devices/bus/ti99/peb/tn_usbsm.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/peb/tn_usbsm.h",
+ MAME_DIR .. "src/devices/bus/ti99/sidecar/arcturus.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/sidecar/arcturus.h",
+ MAME_DIR .. "src/devices/bus/ti99/sidecar/speechsyn.cpp",
+ MAME_DIR .. "src/devices/bus/ti99/sidecar/speechsyn.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/nec_fdd/pc80s31k.h,BUSES["NEC_FDD"] = true
+--@src/devices/bus/ti99x/990_dk.h,BUSES["TI99X"] = true
+--@src/devices/bus/ti99x/990_tap.h,BUSES["TI99X"] = true
+--@src/devices/bus/ti99x/990_hd.h,BUSES["TI99X"] = true
---------------------------------------------------
-if (BUSES["NEC_FDD"]~=null) then
+if BUSES["TI99X"] then
files {
- MAME_DIR .. "src/devices/bus/nec_fdd/pc80s31k.cpp",
- MAME_DIR .. "src/devices/bus/nec_fdd/pc80s31k.h",
+ MAME_DIR .. "src/devices/bus/ti99x/990_dk.cpp",
+ MAME_DIR .. "src/devices/bus/ti99x/990_dk.h",
+ MAME_DIR .. "src/devices/bus/ti99x/990_hd.cpp",
+ MAME_DIR .. "src/devices/bus/ti99x/990_hd.h",
+ MAME_DIR .. "src/devices/bus/ti99x/990_tap.cpp",
+ MAME_DIR .. "src/devices/bus/ti99x/990_tap.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/pc98_cbus/slot.h,BUSES["PC98_CBUS"] = true
+--@src/devices/bus/tiki100/exp.h,BUSES["TIKI100"] = true
---------------------------------------------------
-if (BUSES["PC98_CBUS"]~=null) then
+if BUSES["TIKI100"] then
files {
- MAME_DIR .. "src/devices/bus/pc98_cbus/amd98.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/amd98.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2dd.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2dd.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2hd.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/fdd_2hd.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/lgy98.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/lgy98.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/lha201.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/lha201.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/mif201.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/mif201.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/mpu_pc98.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/mpu_pc98.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/options.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/options.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_02.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_02.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_14.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_14.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_26.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_26.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_27.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_27.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_55.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_55.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_86.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_86.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_118.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/pc9801_118.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/sb16_ct2720.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/sb16_ct2720.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/slot.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/slot.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/sound_orchestra.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/sound_orchestra.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/sound.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/sound.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/speakboard.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/speakboard.h",
- MAME_DIR .. "src/devices/bus/pc98_cbus/wavestar.cpp",
- MAME_DIR .. "src/devices/bus/pc98_cbus/wavestar.h",
+ MAME_DIR .. "src/devices/bus/tiki100/exp.cpp",
+ MAME_DIR .. "src/devices/bus/tiki100/exp.h",
+ MAME_DIR .. "src/devices/bus/tiki100/8088.cpp",
+ MAME_DIR .. "src/devices/bus/tiki100/8088.h",
+ MAME_DIR .. "src/devices/bus/tiki100/hdc.cpp",
+ MAME_DIR .. "src/devices/bus/tiki100/hdc.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/pc98_54simm/slot.h,BUSES["PC98_54SIMM"] = true
+--@src/devices/bus/tim011/exp.h,BUSES["TIM011"] = true
---------------------------------------------------
-if (BUSES["PC98_54SIMM"]~=null) then
+if BUSES["TIM011"] then
files {
- MAME_DIR .. "src/devices/bus/pc98_54simm/options.cpp",
- MAME_DIR .. "src/devices/bus/pc98_54simm/options.h",
- MAME_DIR .. "src/devices/bus/pc98_54simm/simm.cpp",
- MAME_DIR .. "src/devices/bus/pc98_54simm/simm.h",
- MAME_DIR .. "src/devices/bus/pc98_54simm/slot.cpp",
- MAME_DIR .. "src/devices/bus/pc98_54simm/slot.h",
+ MAME_DIR .. "src/devices/bus/tim011/exp.cpp",
+ MAME_DIR .. "src/devices/bus/tim011/exp.h",
+ MAME_DIR .. "src/devices/bus/tim011/aycard.cpp",
+ MAME_DIR .. "src/devices/bus/tim011/aycard.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/pc98_61simm/slot.h,BUSES["PC98_61SIMM"] = true
+--@src/devices/bus/tmc600/euro.h,BUSES["TMC600"] = true
---------------------------------------------------
-if (BUSES["PC98_61SIMM"]~=null) then
+if BUSES["TMC600"] then
files {
- MAME_DIR .. "src/devices/bus/pc98_61simm/options.cpp",
- MAME_DIR .. "src/devices/bus/pc98_61simm/options.h",
- MAME_DIR .. "src/devices/bus/pc98_61simm/simm.cpp",
- MAME_DIR .. "src/devices/bus/pc98_61simm/simm.h",
- MAME_DIR .. "src/devices/bus/pc98_61simm/slot.cpp",
- MAME_DIR .. "src/devices/bus/pc98_61simm/slot.h",
+ MAME_DIR .. "src/devices/bus/tmc600/euro.cpp",
+ MAME_DIR .. "src/devices/bus/tmc600/euro.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/psi_kbd/psi_kbd.h,BUSES["PSI_KEYBOARD"] = true
+--@src/devices/bus/tvc/tvc.h,BUSES["TVC"] = true
---------------------------------------------------
-if (BUSES["PSI_KEYBOARD"]~=null) then
+if BUSES["TVC"] then
files {
- MAME_DIR .. "src/devices/bus/psi_kbd/psi_kbd.cpp",
- MAME_DIR .. "src/devices/bus/psi_kbd/psi_kbd.h",
- MAME_DIR .. "src/devices/bus/psi_kbd/ergoline.cpp",
- MAME_DIR .. "src/devices/bus/psi_kbd/ergoline.h",
- MAME_DIR .. "src/devices/bus/psi_kbd/hle.cpp",
- MAME_DIR .. "src/devices/bus/psi_kbd/hle.h",
+ MAME_DIR .. "src/devices/bus/tvc/tvc.cpp",
+ MAME_DIR .. "src/devices/bus/tvc/tvc.h",
+ MAME_DIR .. "src/devices/bus/tvc/hbf.cpp",
+ MAME_DIR .. "src/devices/bus/tvc/hbf.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/interpro/sr/sr.h,BUSES["INTERPRO_SR"] = true
----------------------------------------------------
-
-if (BUSES["INTERPRO_SR"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/interpro/sr/sr.cpp",
- MAME_DIR .. "src/devices/bus/interpro/sr/sr.h",
- MAME_DIR .. "src/devices/bus/interpro/sr/sr_cards.cpp",
- MAME_DIR .. "src/devices/bus/interpro/sr/sr_cards.h",
- MAME_DIR .. "src/devices/bus/interpro/sr/gt.cpp",
- MAME_DIR .. "src/devices/bus/interpro/sr/gt.h",
- MAME_DIR .. "src/devices/bus/interpro/sr/edge.cpp",
- MAME_DIR .. "src/devices/bus/interpro/sr/edge.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/interpro/keyboard/keyboard.h,BUSES["INTERPRO_KEYBOARD"] = true
+--@src/devices/bus/uts_kbd/uts_kbd.h,BUSES["UTS_KBD"] = true
---------------------------------------------------
-if (BUSES["INTERPRO_KEYBOARD"]~=null) then
+if BUSES["UTS_KBD"] then
files {
- MAME_DIR .. "src/devices/bus/interpro/keyboard/keyboard.cpp",
- MAME_DIR .. "src/devices/bus/interpro/keyboard/keyboard.h",
- MAME_DIR .. "src/devices/bus/interpro/keyboard/hle.cpp",
- MAME_DIR .. "src/devices/bus/interpro/keyboard/hle.h",
- MAME_DIR .. "src/devices/bus/interpro/keyboard/lle.cpp",
- MAME_DIR .. "src/devices/bus/interpro/keyboard/lle.h"
+ MAME_DIR .. "src/devices/bus/uts_kbd/400kbd.cpp",
+ MAME_DIR .. "src/devices/bus/uts_kbd/400kbd.h",
+ MAME_DIR .. "src/devices/bus/uts_kbd/extw.cpp",
+ MAME_DIR .. "src/devices/bus/uts_kbd/extw.h",
+ MAME_DIR .. "src/devices/bus/uts_kbd/uts_kbd.cpp",
+ MAME_DIR .. "src/devices/bus/uts_kbd/uts_kbd.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/interpro/mouse/mouse.h,BUSES["INTERPRO_MOUSE"] = true
+--@src/devices/bus/vboy/slot.h,BUSES["VBOY"] = true
---------------------------------------------------
-
-if (BUSES["INTERPRO_MOUSE"]~=null) then
+if BUSES["VBOY"] then
files {
- MAME_DIR .. "src/devices/bus/interpro/mouse/mouse.cpp",
- MAME_DIR .. "src/devices/bus/interpro/mouse/mouse.h"
+ MAME_DIR .. "src/devices/bus/vboy/slot.cpp",
+ MAME_DIR .. "src/devices/bus/vboy/slot.h",
+ MAME_DIR .. "src/devices/bus/vboy/rom.cpp",
+ MAME_DIR .. "src/devices/bus/vboy/rom.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/einstein/pipe/pipe.h,BUSES["TATUNG_PIPE"] = true
+--@src/devices/bus/vc4000/slot.h,BUSES["VC4000"] = true
---------------------------------------------------
-if (BUSES["TATUNG_PIPE"]~=null) then
+if BUSES["VC4000"] then
files {
- MAME_DIR .. "src/devices/bus/einstein/pipe/pipe.cpp",
- MAME_DIR .. "src/devices/bus/einstein/pipe/pipe.h",
- MAME_DIR .. "src/devices/bus/einstein/pipe/silicon_disc.cpp",
- MAME_DIR .. "src/devices/bus/einstein/pipe/silicon_disc.h",
- MAME_DIR .. "src/devices/bus/einstein/pipe/speculator.cpp",
- MAME_DIR .. "src/devices/bus/einstein/pipe/speculator.h",
- MAME_DIR .. "src/devices/bus/einstein/pipe/tk02.cpp",
- MAME_DIR .. "src/devices/bus/einstein/pipe/tk02.h",
+ MAME_DIR .. "src/devices/bus/vc4000/slot.cpp",
+ MAME_DIR .. "src/devices/bus/vc4000/slot.h",
+ MAME_DIR .. "src/devices/bus/vc4000/rom.cpp",
+ MAME_DIR .. "src/devices/bus/vc4000/rom.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/einstein/userport/userport.h,BUSES["EINSTEIN_USERPORT"] = true
+--@src/devices/bus/vcs/vcs_slot.h,BUSES["VCS"] = true
---------------------------------------------------
-if (BUSES["EINSTEIN_USERPORT"]~=null) then
+if BUSES["VCS"] then
files {
- MAME_DIR .. "src/devices/bus/einstein/userport/userport.cpp",
- MAME_DIR .. "src/devices/bus/einstein/userport/userport.h",
- MAME_DIR .. "src/devices/bus/einstein/userport/mouse.cpp",
- MAME_DIR .. "src/devices/bus/einstein/userport/mouse.h",
- MAME_DIR .. "src/devices/bus/einstein/userport/speech.cpp",
- MAME_DIR .. "src/devices/bus/einstein/userport/speech.h",
+ MAME_DIR .. "src/devices/bus/vcs/vcs_slot.cpp",
+ MAME_DIR .. "src/devices/bus/vcs/vcs_slot.h",
+ MAME_DIR .. "src/devices/bus/vcs/rom.cpp",
+ MAME_DIR .. "src/devices/bus/vcs/rom.h",
+ MAME_DIR .. "src/devices/bus/vcs/compumat.cpp",
+ MAME_DIR .. "src/devices/bus/vcs/compumat.h",
+ MAME_DIR .. "src/devices/bus/vcs/dpc.cpp",
+ MAME_DIR .. "src/devices/bus/vcs/dpc.h",
+ MAME_DIR .. "src/devices/bus/vcs/harmony_melody.cpp",
+ MAME_DIR .. "src/devices/bus/vcs/harmony_melody.h",
+ MAME_DIR .. "src/devices/bus/vcs/scharger.cpp",
+ MAME_DIR .. "src/devices/bus/vcs/scharger.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/tmc600/euro.h,BUSES["TMC600"] = true
+--@src/devices/bus/vcs_ctrl/ctrl.h,BUSES["VCS_CTRL"] = true
---------------------------------------------------
-if (BUSES["TMC600"]~=null) then
+if BUSES["VCS_CTRL"] then
files {
- MAME_DIR .. "src/devices/bus/tmc600/euro.cpp",
- MAME_DIR .. "src/devices/bus/tmc600/euro.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/ctrl.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/ctrl.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/cx85.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/cx85.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/joystick.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/joystick.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/joybooster.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/joybooster.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/keypad.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/keypad.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/lightpen.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/lightpen.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/mouse.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/mouse.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/paddles.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/paddles.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/trakball.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/trakball.h",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/wheel.cpp",
+ MAME_DIR .. "src/devices/bus/vcs_ctrl/wheel.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/technics/kn5000/kn5000_extension.h,BUSES["KN5000"] = true
+--@src/devices/bus/vectrex/slot.h,BUSES["VECTREX"] = true
---------------------------------------------------
-if (BUSES["KN5000"]~=null) then
+if BUSES["VECTREX"] then
files {
- MAME_DIR .. "src/devices/bus/technics/kn5000/kn5000_extension.cpp",
- MAME_DIR .. "src/devices/bus/technics/kn5000/kn5000_extension.h",
- MAME_DIR .. "src/devices/bus/technics/kn5000/hdae5000.cpp",
- MAME_DIR .. "src/devices/bus/technics/kn5000/hdae5000.h",
+ MAME_DIR .. "src/devices/bus/vectrex/slot.cpp",
+ MAME_DIR .. "src/devices/bus/vectrex/slot.h",
+ MAME_DIR .. "src/devices/bus/vectrex/rom.cpp",
+ MAME_DIR .. "src/devices/bus/vectrex/rom.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/multibus/multibus.h,BUSES["MULTIBUS"] = true
+--@src/devices/bus/vic10/exp.h,BUSES["VIC10"] = true
---------------------------------------------------
-if (BUSES["MULTIBUS"]~=null) then
+if BUSES["VIC10"] then
files {
- MAME_DIR .. "src/devices/bus/multibus/multibus.cpp",
- MAME_DIR .. "src/devices/bus/multibus/multibus.h",
- MAME_DIR .. "src/devices/bus/multibus/dsd5217.cpp",
- MAME_DIR .. "src/devices/bus/multibus/dsd5217.h",
- MAME_DIR .. "src/devices/bus/multibus/isbc202.cpp",
- MAME_DIR .. "src/devices/bus/multibus/isbc202.h",
- MAME_DIR .. "src/devices/bus/multibus/isbc8024.cpp",
- MAME_DIR .. "src/devices/bus/multibus/isbc8024.h",
- MAME_DIR .. "src/devices/bus/multibus/cpuap.cpp",
- MAME_DIR .. "src/devices/bus/multibus/cpuap.h",
- MAME_DIR .. "src/devices/bus/multibus/serad.cpp",
- MAME_DIR .. "src/devices/bus/multibus/serad.h",
- MAME_DIR .. "src/devices/bus/multibus/labtam_3232.cpp",
- MAME_DIR .. "src/devices/bus/multibus/labtam_3232.h",
- MAME_DIR .. "src/devices/bus/multibus/labtam_vducom.cpp",
- MAME_DIR .. "src/devices/bus/multibus/labtam_vducom.h",
- MAME_DIR .. "src/devices/bus/multibus/labtam_z80sbc.cpp",
- MAME_DIR .. "src/devices/bus/multibus/labtam_z80sbc.h",
- MAME_DIR .. "src/devices/bus/multibus/robotron_k7070.cpp",
- MAME_DIR .. "src/devices/bus/multibus/robotron_k7070.h",
- MAME_DIR .. "src/devices/bus/multibus/robotron_k7071.cpp",
- MAME_DIR .. "src/devices/bus/multibus/robotron_k7071.h",
- MAME_DIR .. "src/devices/bus/multibus/sun1.cpp",
- MAME_DIR .. "src/devices/bus/multibus/sun1.h",
+ MAME_DIR .. "src/devices/bus/vic10/exp.cpp",
+ MAME_DIR .. "src/devices/bus/vic10/exp.h",
+ MAME_DIR .. "src/devices/bus/vic10/multimax.cpp",
+ MAME_DIR .. "src/devices/bus/vic10/multimax.h",
+ MAME_DIR .. "src/devices/bus/vic10/std.cpp",
+ MAME_DIR .. "src/devices/bus/vic10/std.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/saitek_osa/expansion.h,BUSES["SAITEK_OSA"] = true
+--@src/devices/bus/vic20/exp.h,BUSES["VIC20"] = true
+--@src/devices/bus/vic20/user.h,BUSES["VIC20"] = true
---------------------------------------------------
-if (BUSES["SAITEK_OSA"]~=null) then
+if BUSES["VIC20"] then
files {
- MAME_DIR .. "src/devices/bus/saitek_osa/expansion.cpp",
- MAME_DIR .. "src/devices/bus/saitek_osa/expansion.h",
- MAME_DIR .. "src/devices/bus/saitek_osa/maestro.cpp",
- MAME_DIR .. "src/devices/bus/saitek_osa/maestro.h",
- MAME_DIR .. "src/devices/bus/saitek_osa/maestroa.cpp",
- MAME_DIR .. "src/devices/bus/saitek_osa/maestroa.h",
- MAME_DIR .. "src/devices/bus/saitek_osa/sparc.cpp",
- MAME_DIR .. "src/devices/bus/saitek_osa/sparc.h",
+ MAME_DIR .. "src/devices/bus/vic20/exp.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/exp.h",
+ MAME_DIR .. "src/devices/bus/vic20/fe3.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/fe3.h",
+ MAME_DIR .. "src/devices/bus/vic20/megacart.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/megacart.h",
+ MAME_DIR .. "src/devices/bus/vic20/std.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/std.h",
+ MAME_DIR .. "src/devices/bus/vic20/vic1010.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/vic1010.h",
+ MAME_DIR .. "src/devices/bus/vic20/vic1110.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/vic1110.h",
+ MAME_DIR .. "src/devices/bus/vic20/vic1111.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/vic1111.h",
+ MAME_DIR .. "src/devices/bus/vic20/vic1112.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/vic1112.h",
+ MAME_DIR .. "src/devices/bus/vic20/vic1210.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/vic1210.h",
+ MAME_DIR .. "src/devices/bus/vic20/videopak.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/videopak.h",
+ MAME_DIR .. "src/devices/bus/vic20/speakeasy.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/speakeasy.h",
+ MAME_DIR .. "src/devices/bus/vic20/user.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/user.h",
+ MAME_DIR .. "src/devices/bus/vic20/4cga.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/4cga.h",
+ MAME_DIR .. "src/devices/bus/vic20/vic1011.cpp",
+ MAME_DIR .. "src/devices/bus/vic20/vic1011.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/samcoupe/drive/drive.h,BUSES["SAMCOUPE_DRIVE_PORT"] = true
+--@src/devices/bus/vidbrain/exp.h,BUSES["VIDBRAIN"] = true
---------------------------------------------------
-if (BUSES["SAMCOUPE_DRIVE_PORT"]~=null) then
+if BUSES["VIDBRAIN"] then
files {
- MAME_DIR .. "src/devices/bus/samcoupe/drive/drive.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/drive/drive.h",
- MAME_DIR .. "src/devices/bus/samcoupe/drive/modules.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/drive/modules.h",
- MAME_DIR .. "src/devices/bus/samcoupe/drive/atom.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/drive/atom.h",
- MAME_DIR .. "src/devices/bus/samcoupe/drive/floppy.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/drive/floppy.h",
+ MAME_DIR .. "src/devices/bus/vidbrain/exp.cpp",
+ MAME_DIR .. "src/devices/bus/vidbrain/exp.h",
+ MAME_DIR .. "src/devices/bus/vidbrain/std.cpp",
+ MAME_DIR .. "src/devices/bus/vidbrain/std.h",
+ MAME_DIR .. "src/devices/bus/vidbrain/comp_language.cpp",
+ MAME_DIR .. "src/devices/bus/vidbrain/comp_language.h",
+ MAME_DIR .. "src/devices/bus/vidbrain/info_manager.cpp",
+ MAME_DIR .. "src/devices/bus/vidbrain/info_manager.h",
+ MAME_DIR .. "src/devices/bus/vidbrain/money_minder.cpp",
+ MAME_DIR .. "src/devices/bus/vidbrain/money_minder.h",
+ MAME_DIR .. "src/devices/bus/vidbrain/timeshare.cpp",
+ MAME_DIR .. "src/devices/bus/vidbrain/timeshare.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/samcoupe/expansion/expansion.h,BUSES["SAMCOUPE_EXPANSION"] = true
+--@src/devices/bus/vip/byteio.h,BUSES["VIP"] = true
+--@src/devices/bus/vip/exp.h,BUSES["VIP"] = true
---------------------------------------------------
-if (BUSES["SAMCOUPE_EXPANSION"]~=null) then
+if BUSES["VIP"] then
files {
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/expansion.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/expansion.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/modules.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/modules.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/blue_sampler.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/blue_sampler.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/dallas.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/dallas.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/onemeg.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/onemeg.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/sambus.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/sambus.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/sdide.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/sdide.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/sid.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/sid.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/spi.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/spi.h",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/voicebox.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/expansion/voicebox.h",
+ MAME_DIR .. "src/devices/bus/vip/byteio.cpp",
+ MAME_DIR .. "src/devices/bus/vip/byteio.h",
+ MAME_DIR .. "src/devices/bus/vip/vp620.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp620.h",
+ MAME_DIR .. "src/devices/bus/vip/exp.cpp",
+ MAME_DIR .. "src/devices/bus/vip/exp.h",
+ MAME_DIR .. "src/devices/bus/vip/vp550.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp550.h",
+ MAME_DIR .. "src/devices/bus/vip/vp570.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp570.h",
+ MAME_DIR .. "src/devices/bus/vip/vp575.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp575.h",
+ MAME_DIR .. "src/devices/bus/vip/vp585.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp585.h",
+ MAME_DIR .. "src/devices/bus/vip/vp590.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp590.h",
+ MAME_DIR .. "src/devices/bus/vip/vp595.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp595.h",
+ MAME_DIR .. "src/devices/bus/vip/vp700.cpp",
+ MAME_DIR .. "src/devices/bus/vip/vp700.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/samcoupe/mouse/mouse.h,BUSES["SAMCOUPE_MOUSE_PORT"] = true
+--@src/devices/bus/vme/vme.h,BUSES["VME"] = true
---------------------------------------------------
-if (BUSES["SAMCOUPE_MOUSE_PORT"]~=null) then
+if BUSES["VME"] then
files {
- MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouseport.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouseport.h",
- MAME_DIR .. "src/devices/bus/samcoupe/mouse/modules.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/mouse/modules.h",
- MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouse.cpp",
- MAME_DIR .. "src/devices/bus/samcoupe/mouse/mouse.h",
+ MAME_DIR .. "src/devices/bus/vme/vme.cpp",
+ MAME_DIR .. "src/devices/bus/vme/vme.h",
+ MAME_DIR .. "src/devices/bus/vme/vme_cards.cpp",
+ MAME_DIR .. "src/devices/bus/vme/vme_cards.h",
+ MAME_DIR .. "src/devices/bus/vme/cp31.cpp",
+ MAME_DIR .. "src/devices/bus/vme/cp31.h",
+ MAME_DIR .. "src/devices/bus/vme/enp10.cpp",
+ MAME_DIR .. "src/devices/bus/vme/enp10.h",
+ MAME_DIR .. "src/devices/bus/vme/hcpu30.cpp",
+ MAME_DIR .. "src/devices/bus/vme/hcpu30.h",
+ MAME_DIR .. "src/devices/bus/vme/hk68v10.cpp",
+ MAME_DIR .. "src/devices/bus/vme/hk68v10.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme120.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme120.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme147.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme147.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme180.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme180.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme181.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme181.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme187.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme187.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme327a.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme327a.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme328.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme328.h",
+ MAME_DIR .. "src/devices/bus/vme/mvme350.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mvme350.h",
+ MAME_DIR .. "src/devices/bus/vme/mzr8105.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mzr8105.h",
+ MAME_DIR .. "src/devices/bus/vme/mzr8300.cpp",
+ MAME_DIR .. "src/devices/bus/vme/mzr8300.h",
+ MAME_DIR .. "src/devices/bus/vme/smvme2000.cpp",
+ MAME_DIR .. "src/devices/bus/vme/smvme2000.h",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_cpu1.cpp",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_cpu1.h",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_cpu20.cpp",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_cpu20.h",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_cpu30.cpp",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_cpu30.h",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_iscsi.cpp",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_iscsi.h",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_isio.cpp",
+ MAME_DIR .. "src/devices/bus/vme/sys68k_isio.h",
+ MAME_DIR .. "src/devices/bus/vme/tp880v.cpp",
+ MAME_DIR .. "src/devices/bus/vme/tp880v.h",
+ MAME_DIR .. "src/devices/bus/vme/tp881v.cpp",
+ MAME_DIR .. "src/devices/bus/vme/tp881v.h",
+ MAME_DIR .. "src/devices/bus/vme/tsvme104.cpp",
+ MAME_DIR .. "src/devices/bus/vme/tsvme104.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/thomson/extension.h,BUSES["THOMSON"] = true
+--@src/devices/bus/vsmile/vsmile_ctrl.h,BUSES["VSMILE"] = true
+--@src/devices/bus/vsmile/vsmile_slot.h,BUSES["VSMILE"] = true
---------------------------------------------------
-if (BUSES["THOMSON"]~=null) then
+if BUSES["VSMILE"] then
files {
- MAME_DIR .. "src/devices/bus/thomson/extension.cpp",
- MAME_DIR .. "src/devices/bus/thomson/extension.h",
- MAME_DIR .. "src/devices/bus/thomson/cc90_232.cpp",
- MAME_DIR .. "src/devices/bus/thomson/cc90_232.h",
- MAME_DIR .. "src/devices/bus/thomson/cd90_015.cpp",
- MAME_DIR .. "src/devices/bus/thomson/cd90_015.h",
- MAME_DIR .. "src/devices/bus/thomson/cq90_028.cpp",
- MAME_DIR .. "src/devices/bus/thomson/cq90_028.h",
- MAME_DIR .. "src/devices/bus/thomson/cd90_351.cpp",
- MAME_DIR .. "src/devices/bus/thomson/cd90_351.h",
- MAME_DIR .. "src/devices/bus/thomson/cd90_640.cpp",
- MAME_DIR .. "src/devices/bus/thomson/cd90_640.h",
- MAME_DIR .. "src/devices/bus/thomson/md90_120.cpp",
- MAME_DIR .. "src/devices/bus/thomson/md90_120.h",
- MAME_DIR .. "src/devices/bus/thomson/midipak.cpp",
- MAME_DIR .. "src/devices/bus/thomson/midipak.h",
- MAME_DIR .. "src/devices/bus/thomson/nanoreseau.cpp",
- MAME_DIR .. "src/devices/bus/thomson/nanoreseau.h",
- MAME_DIR .. "src/devices/bus/thomson/rf57_932.cpp",
- MAME_DIR .. "src/devices/bus/thomson/rf57_932.h",
- MAME_DIR .. "src/devices/bus/thomson/speech.cpp",
- MAME_DIR .. "src/devices/bus/thomson/speech.h",
+ MAME_DIR .. "src/devices/bus/vsmile/vsmile_ctrl.cpp",
+ MAME_DIR .. "src/devices/bus/vsmile/vsmile_ctrl.h",
+ MAME_DIR .. "src/devices/bus/vsmile/pad.cpp",
+ MAME_DIR .. "src/devices/bus/vsmile/pad.h",
+ MAME_DIR .. "src/devices/bus/vsmile/mat.cpp",
+ MAME_DIR .. "src/devices/bus/vsmile/mat.h",
+ MAME_DIR .. "src/devices/bus/vsmile/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/vsmile/keyboard.h",
+ MAME_DIR .. "src/devices/bus/vsmile/vsmile_slot.cpp",
+ MAME_DIR .. "src/devices/bus/vsmile/vsmile_slot.h",
+ MAME_DIR .. "src/devices/bus/vsmile/rom.cpp",
+ MAME_DIR .. "src/devices/bus/vsmile/rom.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/pc8801/pc8801_exp.h,BUSES["PC8801"] = true
+--@src/devices/bus/vtech/memexp/memexp.h,BUSES["VTECH_MEMEXP"] = true
---------------------------------------------------
-if (BUSES["PC8801"]~=null) then
+if BUSES["VTECH_MEMEXP"] then
files {
- MAME_DIR .. "src/devices/bus/pc8801/gsx8800.cpp",
- MAME_DIR .. "src/devices/bus/pc8801/gsx8800.h",
- MAME_DIR .. "src/devices/bus/pc8801/pc8801_23.cpp",
- MAME_DIR .. "src/devices/bus/pc8801/pc8801_23.h",
- MAME_DIR .. "src/devices/bus/pc8801/pc8801_31.cpp",
- MAME_DIR .. "src/devices/bus/pc8801/pc8801_31.h",
- MAME_DIR .. "src/devices/bus/pc8801/pc8801_exp.cpp",
- MAME_DIR .. "src/devices/bus/pc8801/pc8801_exp.h",
- MAME_DIR .. "src/devices/bus/pc8801/pcg8100.cpp",
- MAME_DIR .. "src/devices/bus/pc8801/pcg8100.h",
- MAME_DIR .. "src/devices/bus/pc8801/jmbx1.cpp",
- MAME_DIR .. "src/devices/bus/pc8801/jmbx1.h",
- MAME_DIR .. "src/devices/bus/pc8801/hmb20.cpp",
- MAME_DIR .. "src/devices/bus/pc8801/hmb20.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/memexp.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/memexp.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/carts.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/carts.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/floppy.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/floppy.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/memory.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/memory.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/rs232.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/rs232.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/rtty.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/rtty.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/sdloader.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/sdloader.h",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/wordpro.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/memexp/wordpro.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/jvs/jvs.h,BUSES["JVS"] = true
+--@src/devices/bus/vtech/ioexp/ioexp.h,BUSES["VTECH_IOEXP"] = true
---------------------------------------------------
-if (BUSES["JVS"]~=null) then
+if BUSES["VTECH_IOEXP"] then
files {
- MAME_DIR .. "src/devices/bus/jvs/cyberlead.cpp",
- MAME_DIR .. "src/devices/bus/jvs/cyberlead.h",
- MAME_DIR .. "src/devices/bus/jvs/jvs.cpp",
- MAME_DIR .. "src/devices/bus/jvs/jvs.h",
- MAME_DIR .. "src/devices/bus/jvs/jvshle.cpp",
- MAME_DIR .. "src/devices/bus/jvs/jvshle.h",
- MAME_DIR .. "src/devices/bus/jvs/namcoio.cpp",
- MAME_DIR .. "src/devices/bus/jvs/namcoio.h",
- }
-
- dependency {
- { MAME_DIR .. "src/devices/bus/jvs/cyberlead.cpp", GEN_DIR .. "emu/layout/cyberlead.lh" },
- }
-
- custombuildtask {
- layoutbuildtask("emu/layout", "cyberlead"),
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/ioexp.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/ioexp.h",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/carts.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/carts.h",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/lpen.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/lpen.h",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/joystick.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/joystick.h",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/printer.cpp",
+ MAME_DIR .. "src/devices/bus/vtech/ioexp/printer.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/mtu130/board.h,BUSES["MTU130"] = true
+--@src/devices/bus/wangpc/wangpc.h,BUSES["WANGPC"] = true
---------------------------------------------------
-if (BUSES["MTU130"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/mtu130/board.cpp",
- MAME_DIR .. "src/devices/bus/mtu130/board.h",
- MAME_DIR .. "src/devices/bus/mtu130/datamover.cpp",
- MAME_DIR .. "src/devices/bus/mtu130/datamover.h",
- }
- end
-
----------------------------------------------------
---
---@src/devices/bus/nabupc/option.h,BUSES["NABU"] = true
----------------------------------------------------
-if (BUSES["NABU"]~=null) then
+if BUSES["WANGPC"] then
files {
- MAME_DIR .. "src/devices/bus/nabupc/adapter.cpp",
- MAME_DIR .. "src/devices/bus/nabupc/adapter.h",
- MAME_DIR .. "src/devices/bus/nabupc/fdc.cpp",
- MAME_DIR .. "src/devices/bus/nabupc/fdc.h",
- MAME_DIR .. "src/devices/bus/nabupc/hdd.cpp",
- MAME_DIR .. "src/devices/bus/nabupc/hdd.h",
- MAME_DIR .. "src/devices/bus/nabupc/option.cpp",
- MAME_DIR .. "src/devices/bus/nabupc/option.h",
- MAME_DIR .. "src/devices/bus/nabupc/rs232.cpp",
- MAME_DIR .. "src/devices/bus/nabupc/rs232.h",
+ MAME_DIR .. "src/devices/bus/wangpc/wangpc.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/wangpc.h",
+ MAME_DIR .. "src/devices/bus/wangpc/emb.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/emb.h",
+ MAME_DIR .. "src/devices/bus/wangpc/lic.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/lic.h",
+ MAME_DIR .. "src/devices/bus/wangpc/lvc.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/lvc.h",
+ MAME_DIR .. "src/devices/bus/wangpc/mcc.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/mcc.h",
+ MAME_DIR .. "src/devices/bus/wangpc/mvc.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/mvc.h",
+ MAME_DIR .. "src/devices/bus/wangpc/rtc.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/rtc.h",
+ MAME_DIR .. "src/devices/bus/wangpc/tig.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/tig.h",
+ MAME_DIR .. "src/devices/bus/wangpc/wdc.cpp",
+ MAME_DIR .. "src/devices/bus/wangpc/wdc.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/mc68000/sysbus.h,BUSES["MC68000_SYSBUS"] = true
----------------------------------------------------
-
-if (BUSES["MC68000_SYSBUS"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/mc68000/sysbus.cpp",
- MAME_DIR .. "src/devices/bus/mc68000/sysbus.h",
- MAME_DIR .. "src/devices/bus/mc68000/cards.cpp",
- MAME_DIR .. "src/devices/bus/mc68000/cards.h",
- MAME_DIR .. "src/devices/bus/mc68000/floppy.cpp",
- MAME_DIR .. "src/devices/bus/mc68000/floppy.h",
- MAME_DIR .. "src/devices/bus/mc68000/ram.cpp",
- MAME_DIR .. "src/devices/bus/mc68000/ram.h",
- }
-end
---------------------------------------------------
--
--@src/devices/bus/waveblaster/waveblaster.h,BUSES["WAVEBLASTER"] = true
---------------------------------------------------
-if (BUSES["WAVEBLASTER"]~=null) then
+if BUSES["WAVEBLASTER"] then
files {
- MAME_DIR .. "src/devices/bus/waveblaster/waveblaster.cpp",
- MAME_DIR .. "src/devices/bus/waveblaster/waveblaster.h",
- MAME_DIR .. "src/devices/bus/waveblaster/omniwave.cpp",
- MAME_DIR .. "src/devices/bus/waveblaster/omniwave.h",
MAME_DIR .. "src/devices/bus/waveblaster/db50xg.cpp",
MAME_DIR .. "src/devices/bus/waveblaster/db50xg.h",
MAME_DIR .. "src/devices/bus/waveblaster/db60xg.cpp",
MAME_DIR .. "src/devices/bus/waveblaster/db60xg.h",
+ MAME_DIR .. "src/devices/bus/waveblaster/omniwave.cpp",
+ MAME_DIR .. "src/devices/bus/waveblaster/omniwave.h",
+ MAME_DIR .. "src/devices/bus/waveblaster/waveblaster.cpp",
+ MAME_DIR .. "src/devices/bus/waveblaster/waveblaster.h",
MAME_DIR .. "src/devices/bus/waveblaster/wg130.cpp",
MAME_DIR .. "src/devices/bus/waveblaster/wg130.h",
}
end
+
---------------------------------------------------
--
---@src/devices/bus/pci/pci_slot.h,BUSES["PCI"] = true
+--@src/devices/bus/wswan/slot.h,BUSES["WSWAN"] = true
---------------------------------------------------
-if (BUSES["PCI"]~=null) then
+if BUSES["WSWAN"] then
files {
- MAME_DIR .. "src/devices/bus/pci/pci_slot.cpp",
- MAME_DIR .. "src/devices/bus/pci/pci_slot.h",
- MAME_DIR .. "src/devices/bus/pci/aha2940au.cpp",
- MAME_DIR .. "src/devices/bus/pci/aha2940au.h",
- MAME_DIR .. "src/devices/bus/pci/audiowerk2.cpp",
- MAME_DIR .. "src/devices/bus/pci/audiowerk2.h",
- MAME_DIR .. "src/devices/bus/pci/clgd5446.cpp",
- MAME_DIR .. "src/devices/bus/pci/clgd5446.h",
- MAME_DIR .. "src/devices/bus/pci/clgd546x_laguna.cpp",
- MAME_DIR .. "src/devices/bus/pci/clgd546x_laguna.h",
- MAME_DIR .. "src/devices/bus/pci/ds2416.cpp",
- MAME_DIR .. "src/devices/bus/pci/ds2416.h",
- MAME_DIR .. "src/devices/bus/pci/ess_maestro.cpp",
- MAME_DIR .. "src/devices/bus/pci/ess_maestro.h",
- MAME_DIR .. "src/devices/bus/pci/geforce.cpp",
- MAME_DIR .. "src/devices/bus/pci/geforce.h",
- MAME_DIR .. "src/devices/bus/pci/mga2064w.cpp",
- MAME_DIR .. "src/devices/bus/pci/mga2064w.h",
- MAME_DIR .. "src/devices/bus/pci/ncr53c825.cpp",
- MAME_DIR .. "src/devices/bus/pci/ncr53c825.h",
- MAME_DIR .. "src/devices/bus/pci/neon250.cpp",
- MAME_DIR .. "src/devices/bus/pci/neon250.h",
- MAME_DIR .. "src/devices/bus/pci/oti_spitfire.cpp",
- MAME_DIR .. "src/devices/bus/pci/oti_spitfire.h",
- MAME_DIR .. "src/devices/bus/pci/opti82c861.cpp",
- MAME_DIR .. "src/devices/bus/pci/opti82c861.h",
- MAME_DIR .. "src/devices/bus/pci/pdc20262.cpp",
- MAME_DIR .. "src/devices/bus/pci/pdc20262.h",
- MAME_DIR .. "src/devices/bus/pci/permedia2.cpp",
- MAME_DIR .. "src/devices/bus/pci/permedia2.h",
- MAME_DIR .. "src/devices/bus/pci/promotion.cpp",
- MAME_DIR .. "src/devices/bus/pci/promotion.h",
- MAME_DIR .. "src/devices/bus/pci/riva128.cpp",
- MAME_DIR .. "src/devices/bus/pci/riva128.h",
- MAME_DIR .. "src/devices/bus/pci/rivatnt.cpp",
- MAME_DIR .. "src/devices/bus/pci/rivatnt.h",
- MAME_DIR .. "src/devices/bus/pci/rtl8029as_pci.cpp",
- MAME_DIR .. "src/devices/bus/pci/rtl8029as_pci.h",
- MAME_DIR .. "src/devices/bus/pci/rtl8139_pci.cpp",
- MAME_DIR .. "src/devices/bus/pci/rtl8139_pci.h",
- MAME_DIR .. "src/devices/bus/pci/sis6326.cpp",
- MAME_DIR .. "src/devices/bus/pci/sis6326.h",
- MAME_DIR .. "src/devices/bus/pci/sonicvibes.cpp",
- MAME_DIR .. "src/devices/bus/pci/sonicvibes.h",
- MAME_DIR .. "src/devices/bus/pci/sw1000xg.cpp",
- MAME_DIR .. "src/devices/bus/pci/sw1000xg.h",
- MAME_DIR .. "src/devices/bus/pci/virge_pci.cpp",
- MAME_DIR .. "src/devices/bus/pci/virge_pci.h",
- MAME_DIR .. "src/devices/bus/pci/vision.cpp",
- MAME_DIR .. "src/devices/bus/pci/vision.h",
- MAME_DIR .. "src/devices/bus/pci/vt6306.cpp",
- MAME_DIR .. "src/devices/bus/pci/vt6306.h",
- MAME_DIR .. "src/devices/bus/pci/wd9710_pci.cpp",
- MAME_DIR .. "src/devices/bus/pci/wd9710_pci.h",
- MAME_DIR .. "src/devices/bus/pci/ymp21.cpp",
- MAME_DIR .. "src/devices/bus/pci/ymp21.h",
- MAME_DIR .. "src/devices/bus/pci/zr36057.cpp",
- MAME_DIR .. "src/devices/bus/pci/zr36057.h",
+ MAME_DIR .. "src/devices/bus/wswan/slot.cpp",
+ MAME_DIR .. "src/devices/bus/wswan/slot.h",
+ MAME_DIR .. "src/devices/bus/wswan/rom.cpp",
+ MAME_DIR .. "src/devices/bus/wswan/rom.h",
}
end
---------------------------------------------------
--
---@src/devices/bus/plg1x0/plg1x0.h,BUSES["PLG1X0"] = true
+--@src/devices/bus/wysekbd/wysekbd.h,BUSES["WYSEKBD"] = true
---------------------------------------------------
-if (BUSES["PLG1X0"]~=null) then
+if BUSES["WYSEKBD"] then
files {
- MAME_DIR .. "src/devices/bus/plg1x0/plg1x0.cpp",
- MAME_DIR .. "src/devices/bus/plg1x0/plg1x0.h",
- MAME_DIR .. "src/devices/bus/plg1x0/plg100-vl.cpp",
- MAME_DIR .. "src/devices/bus/plg1x0/plg100-vl.h",
- MAME_DIR .. "src/devices/bus/plg1x0/plg150-ap.cpp",
- MAME_DIR .. "src/devices/bus/plg1x0/plg150-ap.h",
+ MAME_DIR .. "src/devices/bus/wysekbd/wysegakb.cpp",
+ MAME_DIR .. "src/devices/bus/wysekbd/wysegakb.h",
+ MAME_DIR .. "src/devices/bus/wysekbd/wysekbd.cpp",
+ MAME_DIR .. "src/devices/bus/wysekbd/wysekbd.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/heathzenith/h89/h89bus.h,BUSES["H89BUS"] = true
----------------------------------------------------
-
-if (BUSES["H89BUS"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/heathzenith/h89/cdr_fdc_880h.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/cdr_fdc_880h.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h89bus.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h89bus.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h17_fdc.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h17_fdc.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_3.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_3.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_5.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/h_88_5.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/mms77316_fdc.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/mms77316_fdc.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_sound.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_sound.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_parallel_port.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/sigmasoft_parallel_port.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/we_pullup.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/we_pullup.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/z_89_11.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/z_89_11.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/z37_fdc.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h89/z37_fdc.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/heathzenith/h8/h8bus.h,BUSES["H8BUS"] = true
+--@src/devices/bus/x68k/x68kexp.h,BUSES["X68K"] = true
---------------------------------------------------
-
-if (BUSES["H8BUS"]~=null) then
+if BUSES["X68K"] then
files {
- MAME_DIR .. "src/devices/bus/heathzenith/h8/cards.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/cards.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/cpu8080.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/cpu8080.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/front_panel.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/front_panel.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/h8bus.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/h8bus.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_1.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_1.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_5.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/h_8_5.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_6.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_6.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_8.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/ha_8_8.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_16.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_16.h",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_64.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h8/wh_8_64.h",
- }
-
- dependency {
- { MAME_DIR .. "src/devices/bus/heathzenith/h8/front_panel.cpp", GEN_DIR .. "emu/layout/h8_fp.lh" },
- }
-
- custombuildtask {
- layoutbuildtask("emu/layout", "h8_fp"),
+ MAME_DIR .. "src/devices/bus/x68k/x68kexp.cpp",
+ MAME_DIR .. "src/devices/bus/x68k/x68kexp.h",
+ MAME_DIR .. "src/devices/bus/x68k/x68k_neptunex.cpp",
+ MAME_DIR .. "src/devices/bus/x68k/x68k_neptunex.h",
+ MAME_DIR .. "src/devices/bus/x68k/x68k_scsiext.cpp",
+ MAME_DIR .. "src/devices/bus/x68k/x68k_scsiext.h",
+ MAME_DIR .. "src/devices/bus/x68k/x68k_midi.cpp",
+ MAME_DIR .. "src/devices/bus/x68k/x68k_midi.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/heathzenith/intr_cntrl/intr_cntrl.h,BUSES["HEATH_INTR_SOCKET"] = true
----------------------------------------------------
-
-if (BUSES["HEATH_INTR_SOCKET"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/heathzenith/intr_cntrl/intr_cntrl.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/intr_cntrl/intr_cntrl.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/heathzenith/h19/tlb.h,BUSES["HEATH_TLB_CONNECTOR"] = true
+--@src/devices/bus/z29_kbd/keyboard.h,BUSES["Z29_KBD"] = true
---------------------------------------------------
-if (BUSES["HEATH_TLB_CONNECTOR"]~=null) then
+if BUSES["Z29_KBD"] then
files {
- MAME_DIR .. "src/devices/bus/heathzenith/h19/tlb.cpp",
- MAME_DIR .. "src/devices/bus/heathzenith/h19/tlb.h",
+ MAME_DIR .. "src/devices/bus/z29_kbd/keyboard.cpp",
+ MAME_DIR .. "src/devices/bus/z29_kbd/keyboard.h",
+ MAME_DIR .. "src/devices/bus/z29_kbd/he191_3425.cpp",
+ MAME_DIR .. "src/devices/bus/z29_kbd/he191_3425.h",
+ MAME_DIR .. "src/devices/bus/z29_kbd/md_kbd.cpp",
+ MAME_DIR .. "src/devices/bus/z29_kbd/md_kbd.h",
}
end
----------------------------------------------------
---
---@src/devices/bus/amiga/cpuslot/cpuslot.h,BUSES["AMIGA_CPUSLOT"] = true
----------------------------------------------------
-
-if (BUSES["AMIGA_CPUSLOT"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/cpuslot.cpp",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/cpuslot.h",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/cards.cpp",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/cards.h",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/a570.cpp",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/a570.h",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/a590.cpp",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/a590.h",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/action_replay.cpp",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/action_replay.h",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/megamix500.cpp",
- MAME_DIR .. "src/devices/bus/amiga/cpuslot/megamix500.h",
- }
-end
---------------------------------------------------
--
---@src/devices/bus/st/stcart.h,BUSES["STCART_CONNECTOR"] = true
+--@src/devices/bus/z88/z88.h,BUSES["Z88"] = true
---------------------------------------------------
-if (BUSES["STCART_CONNECTOR"]~=null) then
- files {
- MAME_DIR .. "src/devices/bus/st/stcart.cpp",
- MAME_DIR .. "src/devices/bus/st/stcart.h",
- MAME_DIR .. "src/devices/bus/st/replay.cpp",
- MAME_DIR .. "src/devices/bus/st/replay.h",
- MAME_DIR .. "src/devices/bus/st/rom.cpp",
- MAME_DIR .. "src/devices/bus/st/rom.h",
- }
-end
-
----------------------------------------------------
---
---@src/devices/bus/applepp/applepp.h,BUSES["APPLEPP"] = true
----------------------------------------------------
-if (BUSES["APPLEPP"]~=null) then
+if BUSES["Z88"] then
files {
- MAME_DIR .. "src/devices/bus/applepp/applepp.cpp",
- MAME_DIR .. "src/devices/bus/applepp/applepp.h",
- MAME_DIR .. "src/devices/bus/applepp/storagehle.cpp",
- MAME_DIR .. "src/devices/bus/applepp/storagehle.h",
+ MAME_DIR .. "src/devices/bus/z88/z88.cpp",
+ MAME_DIR .. "src/devices/bus/z88/z88.h",
+ MAME_DIR .. "src/devices/bus/z88/flash.cpp",
+ MAME_DIR .. "src/devices/bus/z88/flash.h",
+ MAME_DIR .. "src/devices/bus/z88/ram.cpp",
+ MAME_DIR .. "src/devices/bus/z88/ram.h",
+ MAME_DIR .. "src/devices/bus/z88/rom.cpp",
+ MAME_DIR .. "src/devices/bus/z88/rom.h",
}
end
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",
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",
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index c2818c7338d..486cb7818e3 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -24,7 +24,7 @@ files {
--@src/devices/video/315_5124.h,VIDEOS["SEGA315_5124"] = true
--------------------------------------------------
-if (VIDEOS["SEGA315_5124"]~=null) then
+if VIDEOS["SEGA315_5124"] then
files {
MAME_DIR .. "src/devices/video/315_5124.cpp",
MAME_DIR .. "src/devices/video/315_5124.h",
@@ -36,7 +36,7 @@ end
--@src/devices/video/315_5313.h,VIDEOS["SEGA315_5313"] = true
--------------------------------------------------
-if (VIDEOS["SEGA315_5313"]~=null) then
+if VIDEOS["SEGA315_5313"] then
files {
MAME_DIR .. "src/devices/video/315_5313.cpp",
MAME_DIR .. "src/devices/video/315_5313.h",
@@ -48,7 +48,7 @@ end
--@src/devices/video/ym7101.h,VIDEOS["YM7101"] = true
--------------------------------------------------
-if (VIDEOS["YM7101"]~=null) then
+if VIDEOS["YM7101"] then
files {
MAME_DIR .. "src/devices/video/ym7101.cpp",
MAME_DIR .. "src/devices/video/ym7101.h",
@@ -60,7 +60,7 @@ end
--@src/devices/video/82c425.h,VIDEOS["82C425"] = true
--------------------------------------------------
-if (VIDEOS["82C425"]~=null) then
+if VIDEOS["82C425"] then
files {
MAME_DIR .. "src/devices/video/82c425.cpp",
MAME_DIR .. "src/devices/video/82c425.h",
@@ -72,7 +72,7 @@ end
--@src/devices/video/am8052.h,VIDEOS["AM8052"] = true
--------------------------------------------------
-if (VIDEOS["AM8052"]~=null) then
+if VIDEOS["AM8052"] then
files {
MAME_DIR .. "src/devices/video/am8052.cpp",
MAME_DIR .. "src/devices/video/am8052.h",
@@ -84,7 +84,7 @@ end
--@src/devices/video/ariel.h,VIDEOS["ARIEL"] = true
--------------------------------------------------
-if (VIDEOS["ARIEL"]~=null) then
+if VIDEOS["ARIEL"] then
files {
MAME_DIR .. "src/devices/video/ariel.cpp",
MAME_DIR .. "src/devices/video/ariel.h",
@@ -96,7 +96,7 @@ end
--@src/devices/video/atirage.h,VIDEOS["ATIRAGE"] = true
--------------------------------------------------
-if (VIDEOS["ATIRAGE"]~=null) then
+if VIDEOS["ATIRAGE"] then
files {
MAME_DIR .. "src/devices/video/atirage.cpp",
MAME_DIR .. "src/devices/video/atirage.h",
@@ -105,10 +105,94 @@ end
--------------------------------------------------
--
+--@src/devices/video/avgdvg.h,VIDEOS["AVGDVG"] = true
+--------------------------------------------------
+
+if VIDEOS["AVGDVG"] then
+ files {
+ MAME_DIR .. "src/devices/video/avgdvg.cpp",
+ MAME_DIR .. "src/devices/video/avgdvg.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt431.h,VIDEOS["BT431"] = true
+--------------------------------------------------
+
+if VIDEOS["BT431"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt431.cpp",
+ MAME_DIR .. "src/devices/video/bt431.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt450.h,VIDEOS["BT450"] = true
+--------------------------------------------------
+
+if VIDEOS["BT450"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt450.cpp",
+ MAME_DIR .. "src/devices/video/bt450.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt459.h,VIDEOS["BT459"] = true
+--------------------------------------------------
+
+if VIDEOS["BT459"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt459.cpp",
+ MAME_DIR .. "src/devices/video/bt459.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt45x.h,VIDEOS["BT45X"] = true
+--------------------------------------------------
+
+if VIDEOS["BT45X"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt45x.cpp",
+ MAME_DIR .. "src/devices/video/bt45x.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt47x.h,VIDEOS["BT47X"] = true
+--------------------------------------------------
+
+if VIDEOS["BT47X"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt47x.cpp",
+ MAME_DIR .. "src/devices/video/bt47x.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/bt48x.h,VIDEOS["BT48X"] = true
+--------------------------------------------------
+
+if VIDEOS["BT48X"] then
+ files {
+ MAME_DIR .. "src/devices/video/bt48x.cpp",
+ MAME_DIR .. "src/devices/video/bt48x.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/bufsprite.h,VIDEOS["BUFSPRITE"] = true
--------------------------------------------------
-if (VIDEOS["BUFSPRITE"]~=null) then
+if VIDEOS["BUFSPRITE"] then
files {
MAME_DIR .. "src/devices/video/bufsprite.cpp",
MAME_DIR .. "src/devices/video/bufsprite.h",
@@ -120,7 +204,7 @@ end
--@src/devices/video/cdp1861.h,VIDEOS["CDP1861"] = true
--------------------------------------------------
-if (VIDEOS["CDP1861"]~=null) then
+if VIDEOS["CDP1861"] then
files {
MAME_DIR .. "src/devices/video/cdp1861.cpp",
MAME_DIR .. "src/devices/video/cdp1861.h",
@@ -132,7 +216,7 @@ end
--@src/devices/video/cdp1862.h,VIDEOS["CDP1862"] = true
--------------------------------------------------
-if (VIDEOS["CDP1862"]~=null) then
+if VIDEOS["CDP1862"] then
files {
MAME_DIR .. "src/devices/video/cdp1862.cpp",
MAME_DIR .. "src/devices/video/cdp1862.h",
@@ -144,7 +228,7 @@ end
--@src/devices/video/cesblit.h,VIDEOS["CESBLIT"] = true
--------------------------------------------------
-if (VIDEOS["CESBLIT"]~=null) then
+if VIDEOS["CESBLIT"] then
files {
MAME_DIR .. "src/devices/video/cesblit.cpp",
MAME_DIR .. "src/devices/video/cesblit.h",
@@ -156,7 +240,7 @@ end
--@src/devices/video/crt9007.h,VIDEOS["CRT9007"] = true
--------------------------------------------------
-if (VIDEOS["CRT9007"]~=null) then
+if VIDEOS["CRT9007"] then
files {
MAME_DIR .. "src/devices/video/crt9007.cpp",
MAME_DIR .. "src/devices/video/crt9007.h",
@@ -168,7 +252,7 @@ end
--@src/devices/video/crt9021.h,VIDEOS["CRT9021"] = true
--------------------------------------------------
-if (VIDEOS["CRT9021"]~=null) then
+if VIDEOS["CRT9021"] then
files {
MAME_DIR .. "src/devices/video/crt9021.cpp",
MAME_DIR .. "src/devices/video/crt9021.h",
@@ -180,7 +264,7 @@ end
--@src/devices/video/crt9028.h,VIDEOS["CRT9028"] = true
--------------------------------------------------
-if (VIDEOS["CRT9028"]~=null) then
+if VIDEOS["CRT9028"] then
files {
MAME_DIR .. "src/devices/video/crt9028.cpp",
MAME_DIR .. "src/devices/video/crt9028.h",
@@ -192,7 +276,7 @@ end
--@src/devices/video/crt9212.h,VIDEOS["CRT9212"] = true
--------------------------------------------------
-if (VIDEOS["CRT9212"]~=null) then
+if VIDEOS["CRT9212"] then
files {
MAME_DIR .. "src/devices/video/crt9212.cpp",
MAME_DIR .. "src/devices/video/crt9212.h",
@@ -204,7 +288,7 @@ end
--@src/devices/video/dl1416.h,VIDEOS["DL1416"] = true
--------------------------------------------------
-if (VIDEOS["DL1416"]~=null) then
+if VIDEOS["DL1416"] then
files {
MAME_DIR .. "src/devices/video/dl1416.cpp",
MAME_DIR .. "src/devices/video/dl1416.h",
@@ -216,7 +300,7 @@ end
--@src/devices/video/dm9368.h,VIDEOS["DM9368"] = true
--------------------------------------------------
-if (VIDEOS["DM9368"]~=null) then
+if VIDEOS["DM9368"] then
files {
MAME_DIR .. "src/devices/video/dm9368.cpp",
MAME_DIR .. "src/devices/video/dm9368.h",
@@ -228,19 +312,31 @@ end
--@src/devices/video/dp8350.h,VIDEOS["DP8350"] = true
--------------------------------------------------
-if (VIDEOS["DP8350"]~=null) then
+if VIDEOS["DP8350"] then
files {
MAME_DIR .. "src/devices/video/dp8350.cpp",
MAME_DIR .. "src/devices/video/dp8350.h",
}
end
+--------------------------------------------------
+--
+--@src/devices/video/dp8510.h,VIDEOS["DP8510"] = true
+--------------------------------------------------
+
+if VIDEOS["DP8510"] then
+ files {
+ MAME_DIR .. "src/devices/video/dp8510.cpp",
+ MAME_DIR .. "src/devices/video/dp8510.h",
+ }
+end
+
---------------------------------------------------
--
--@src/devices/video/ds8874.h,VIDEOS["DS8874"] = true
---------------------------------------------------
-if (VIDEOS["DS8874"]~=null) then
+if VIDEOS["DS8874"] then
files {
MAME_DIR .. "src/devices/video/ds8874.cpp",
MAME_DIR .. "src/devices/video/ds8874.h",
@@ -252,7 +348,7 @@ end
--@src/devices/video/ef9340_1.h,VIDEOS["EF9340_1"] = true
--------------------------------------------------
-if (VIDEOS["EF9340_1"]~=null) then
+if VIDEOS["EF9340_1"] then
files {
MAME_DIR .. "src/devices/video/ef9340_1.cpp",
MAME_DIR .. "src/devices/video/ef9340_1.h",
@@ -264,7 +360,7 @@ end
--@src/devices/video/ef9345.h,VIDEOS["EF9345"] = true
--------------------------------------------------
-if (VIDEOS["EF9345"]~=null) then
+if VIDEOS["EF9345"] then
files {
MAME_DIR .. "src/devices/video/ef9345.cpp",
MAME_DIR .. "src/devices/video/ef9345.h",
@@ -276,7 +372,7 @@ end
--@src/devices/video/ef9364.h,VIDEOS["EF9364"] = true
--------------------------------------------------
-if (VIDEOS["EF9364"]~=null) then
+if VIDEOS["EF9364"] then
files {
MAME_DIR .. "src/devices/video/ef9364.cpp",
MAME_DIR .. "src/devices/video/ef9364.h",
@@ -288,7 +384,7 @@ end
--@src/devices/video/ef9365.h,VIDEOS["EF9365"] = true
--------------------------------------------------
-if (VIDEOS["EF9365"]~=null) then
+if VIDEOS["EF9365"] then
files {
MAME_DIR .. "src/devices/video/ef9365.cpp",
MAME_DIR .. "src/devices/video/ef9365.h",
@@ -297,10 +393,22 @@ end
--------------------------------------------------
--
+--@src/devices/video/ef9369.h,VIDEOS["EF9369"] = true
+--------------------------------------------------
+
+if VIDEOS["EF9369"] then
+ files {
+ MAME_DIR .. "src/devices/video/ef9369.cpp",
+ MAME_DIR .. "src/devices/video/ef9369.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/fixfreq.h,VIDEOS["FIXFREQ"] = true
--------------------------------------------------
-if (VIDEOS["FIXFREQ"]~=null) then
+if VIDEOS["FIXFREQ"] then
files {
MAME_DIR .. "src/devices/video/fixfreq.cpp",
MAME_DIR .. "src/devices/video/fixfreq.h",
@@ -309,37 +417,49 @@ end
--------------------------------------------------
--
---@src/devices/video/gf4500.h,VIDEOS["GF4500"] = true
+--@src/devices/video/gb_lcd.h,VIDEOS["GB_LCD"] = true
--------------------------------------------------
-if (VIDEOS["GF4500"]~=null) then
+if VIDEOS["GB_LCD"] then
files {
- MAME_DIR .. "src/devices/video/gf4500.cpp",
- MAME_DIR .. "src/devices/video/gf4500.h",
+ MAME_DIR .. "src/devices/video/gb_lcd.cpp",
+ MAME_DIR .. "src/devices/video/gb_lcd.h",
}
end
--------------------------------------------------
--
---@src/devices/video/gf7600gs.h,VIDEOS["GF7600GS"] = true
+--@src/devices/video/gba_lcd.h,VIDEOS["GBA_LCD"] = true
--------------------------------------------------
-if (VIDEOS["GF7600GS"]~=null) then
+if VIDEOS["GBA_LCD"] then
files {
- MAME_DIR .. "src/devices/video/gf7600gs.cpp",
- MAME_DIR .. "src/devices/video/gf7600gs.h",
+ MAME_DIR .. "src/devices/video/gba_lcd.cpp",
+ MAME_DIR .. "src/devices/video/gba_lcd.h",
}
end
--------------------------------------------------
--
---@src/devices/video/nt7534.h,VIDEOS["NT7534"] = true
+--@src/devices/video/gf4500.h,VIDEOS["GF4500"] = true
--------------------------------------------------
-if (VIDEOS["NT7534"]~=null) then
+if VIDEOS["GF4500"] then
files {
- MAME_DIR .. "src/devices/video/nt7534.cpp",
- MAME_DIR .. "src/devices/video/nt7534.h",
+ MAME_DIR .. "src/devices/video/gf4500.cpp",
+ MAME_DIR .. "src/devices/video/gf4500.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/gf7600gs.h,VIDEOS["GF7600GS"] = true
+--------------------------------------------------
+
+if VIDEOS["GF7600GS"] then
+ files {
+ MAME_DIR .. "src/devices/video/gf7600gs.cpp",
+ MAME_DIR .. "src/devices/video/gf7600gs.h",
}
end
@@ -348,7 +468,7 @@ end
--@src/devices/video/hd44102.h,VIDEOS["HD44102"] = true
--------------------------------------------------
-if (VIDEOS["HD44102"]~=null) then
+if VIDEOS["HD44102"] then
files {
MAME_DIR .. "src/devices/video/hd44102.cpp",
MAME_DIR .. "src/devices/video/hd44102.h",
@@ -360,7 +480,7 @@ end
--@src/devices/video/hd44352.h,VIDEOS["HD44352"] = true
--------------------------------------------------
-if (VIDEOS["HD44352"]~=null) then
+if VIDEOS["HD44352"] then
files {
MAME_DIR .. "src/devices/video/hd44352.cpp",
MAME_DIR .. "src/devices/video/hd44352.h",
@@ -372,7 +492,7 @@ end
--@src/devices/video/hd44780.h,VIDEOS["HD44780"] = true
--------------------------------------------------
-if (VIDEOS["HD44780"]~=null) then
+if VIDEOS["HD44780"] then
files {
MAME_DIR .. "src/devices/video/hd44780.cpp",
MAME_DIR .. "src/devices/video/hd44780.h",
@@ -384,7 +504,7 @@ end
--@src/devices/video/hd61202.h,VIDEOS["HD61202"] = true
--------------------------------------------------
-if (VIDEOS["HD61202"]~=null) then
+if VIDEOS["HD61202"] then
files {
MAME_DIR .. "src/devices/video/hd61202.cpp",
MAME_DIR .. "src/devices/video/hd61202.h",
@@ -396,7 +516,7 @@ end
--@src/devices/video/hd61602.h,VIDEOS["HD61602"] = true
--------------------------------------------------
-if (VIDEOS["HD61602"]~=null) then
+if VIDEOS["HD61602"] then
files {
MAME_DIR .. "src/devices/video/hd61602.cpp",
MAME_DIR .. "src/devices/video/hd61602.h",
@@ -408,7 +528,7 @@ end
--@src/devices/video/hd61603.h,VIDEOS["HD61603"] = true
--------------------------------------------------
-if (VIDEOS["HD61603"]~=null) then
+if VIDEOS["HD61603"] then
files {
MAME_DIR .. "src/devices/video/hd61603.cpp",
MAME_DIR .. "src/devices/video/hd61603.h",
@@ -420,7 +540,7 @@ end
--@src/devices/video/hd61830.h,VIDEOS["HD61830"] = true
--------------------------------------------------
-if (VIDEOS["HD61830"]~=null) then
+if VIDEOS["HD61830"] then
files {
MAME_DIR .. "src/devices/video/hd61830.cpp",
MAME_DIR .. "src/devices/video/hd61830.h",
@@ -432,7 +552,7 @@ end
--@src/devices/video/hd63484.h,VIDEOS["HD63484"] = true
--------------------------------------------------
-if (VIDEOS["HD63484"]~=null) then
+if VIDEOS["HD63484"] then
files {
MAME_DIR .. "src/devices/video/hd63484.cpp",
MAME_DIR .. "src/devices/video/hd63484.h",
@@ -444,7 +564,7 @@ end
--@src/devices/video/hd66421.h,VIDEOS["HD66421"] = true
--------------------------------------------------
-if (VIDEOS["HD66421"]~=null) then
+if VIDEOS["HD66421"] then
files {
MAME_DIR .. "src/devices/video/hd66421.cpp",
MAME_DIR .. "src/devices/video/hd66421.h",
@@ -456,7 +576,7 @@ end
--@src/devices/video/hlcd0438.h,VIDEOS["HLCD0438"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0438"]~=null) then
+if VIDEOS["HLCD0438"] then
files {
MAME_DIR .. "src/devices/video/hlcd0438.cpp",
MAME_DIR .. "src/devices/video/hlcd0438.h",
@@ -468,7 +588,7 @@ end
--@src/devices/video/hlcd0488.h,VIDEOS["HLCD0488"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0488"]~=null) then
+if VIDEOS["HLCD0488"] then
files {
MAME_DIR .. "src/devices/video/hlcd0488.cpp",
MAME_DIR .. "src/devices/video/hlcd0488.h",
@@ -480,7 +600,7 @@ end
--@src/devices/video/hlcd0515.h,VIDEOS["HLCD0515"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0515"]~=null) then
+if VIDEOS["HLCD0515"] then
files {
MAME_DIR .. "src/devices/video/hlcd0515.cpp",
MAME_DIR .. "src/devices/video/hlcd0515.h",
@@ -492,7 +612,7 @@ end
--@src/devices/video/hlcd0538.h,VIDEOS["HLCD0538"] = true
--------------------------------------------------
-if (VIDEOS["HLCD0538"]~=null) then
+if VIDEOS["HLCD0538"] then
files {
MAME_DIR .. "src/devices/video/hlcd0538.cpp",
MAME_DIR .. "src/devices/video/hlcd0538.h",
@@ -504,7 +624,7 @@ end
--@src/devices/video/hp1ll3.h,VIDEOS["HP1LL3"] = true
--------------------------------------------------
-if (VIDEOS["HP1LL3"]~=null) then
+if VIDEOS["HP1LL3"] then
files {
MAME_DIR .. "src/devices/video/hp1ll3.cpp",
MAME_DIR .. "src/devices/video/hp1ll3.h",
@@ -516,7 +636,7 @@ end
--@src/devices/video/huc6202.h,VIDEOS["HUC6202"] = true
--------------------------------------------------
-if (VIDEOS["HUC6202"]~=null) then
+if VIDEOS["HUC6202"] then
files {
MAME_DIR .. "src/devices/video/huc6202.cpp",
MAME_DIR .. "src/devices/video/huc6202.h",
@@ -528,7 +648,7 @@ end
--@src/devices/video/huc6260.h,VIDEOS["HUC6260"] = true
--------------------------------------------------
-if (VIDEOS["HUC6260"]~=null) then
+if VIDEOS["HUC6260"] then
files {
MAME_DIR .. "src/devices/video/huc6260.cpp",
MAME_DIR .. "src/devices/video/huc6260.h",
@@ -540,7 +660,7 @@ end
--@src/devices/video/huc6261.h,VIDEOS["HUC6261"] = true
--------------------------------------------------
-if (VIDEOS["HUC6261"]~=null) then
+if VIDEOS["HUC6261"] then
files {
MAME_DIR .. "src/devices/video/huc6261.cpp",
MAME_DIR .. "src/devices/video/huc6261.h",
@@ -552,7 +672,7 @@ end
--@src/devices/video/huc6270.h,VIDEOS["HUC6270"] = true
--------------------------------------------------
-if (VIDEOS["HUC6270"]~=null) then
+if VIDEOS["HUC6270"] then
files {
MAME_DIR .. "src/devices/video/huc6270.cpp",
MAME_DIR .. "src/devices/video/huc6270.h",
@@ -564,7 +684,7 @@ end
--@src/devices/video/huc6271.h,VIDEOS["HUC6271"] = true
--------------------------------------------------
-if (VIDEOS["HUC6271"]~=null) then
+if VIDEOS["HUC6271"] then
files {
MAME_DIR .. "src/devices/video/huc6271.cpp",
MAME_DIR .. "src/devices/video/huc6271.h",
@@ -576,7 +696,7 @@ end
--@src/devices/video/huc6272.h,VIDEOS["HUC6272"] = true
--------------------------------------------------
-if (VIDEOS["HUC6272"]~=null) then
+if VIDEOS["HUC6272"] then
files {
MAME_DIR .. "src/devices/video/huc6272.cpp",
MAME_DIR .. "src/devices/video/huc6272.h",
@@ -588,7 +708,7 @@ end
--@src/devices/video/i8244.h,VIDEOS["I8244"] = true
--------------------------------------------------
-if (VIDEOS["I8244"]~=null) then
+if VIDEOS["I8244"] then
files {
MAME_DIR .. "src/devices/video/i8244.cpp",
MAME_DIR .. "src/devices/video/i8244.h",
@@ -600,7 +720,7 @@ end
--@src/devices/video/i82730.h,VIDEOS["I82730"] = true
--------------------------------------------------
-if (VIDEOS["I82730"]~=null) then
+if VIDEOS["I82730"] then
files {
MAME_DIR .. "src/devices/video/i82730.cpp",
MAME_DIR .. "src/devices/video/i82730.h",
@@ -612,7 +732,7 @@ end
--@src/devices/video/i8275.h,VIDEOS["I8275"] = true
--------------------------------------------------
-if (VIDEOS["I8275"]~=null) then
+if VIDEOS["I8275"] then
files {
MAME_DIR .. "src/devices/video/i8275.cpp",
MAME_DIR .. "src/devices/video/i8275.h",
@@ -624,7 +744,7 @@ end
--@src/devices/video/ims_cvc.h,VIDEOS["IMS_CVC"] = true
--------------------------------------------------
-if (VIDEOS["IMS_CVC"]~=null) then
+if VIDEOS["IMS_CVC"] then
files {
MAME_DIR .. "src/devices/video/ims_cvc.cpp",
MAME_DIR .. "src/devices/video/ims_cvc.h",
@@ -633,10 +753,22 @@ end
--------------------------------------------------
--
+--@src/devices/video/jangou_blitter.h,VIDEOS["JANGOU_BLITTER"] = true
+--------------------------------------------------
+
+if VIDEOS["JANGOU_BLITTER"] then
+ files {
+ MAME_DIR .. "src/devices/video/jangou_blitter.cpp",
+ MAME_DIR .. "src/devices/video/jangou_blitter.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/k051316.h,VIDEOS["K051316"] = true
--------------------------------------------------
-if (VIDEOS["K051316"]~=null) then
+if VIDEOS["K051316"] then
files {
MAME_DIR .. "src/devices/video/k051316.cpp",
MAME_DIR .. "src/devices/video/k051316.h",
@@ -648,7 +780,7 @@ end
--@src/devices/video/k053936.h,VIDEOS["K053936"] = true
--------------------------------------------------
-if (VIDEOS["K053936"]~=null) then
+if VIDEOS["K053936"] then
files {
MAME_DIR .. "src/devices/video/k053936.cpp",
MAME_DIR .. "src/devices/video/k053936.h",
@@ -660,7 +792,7 @@ end
--@src/devices/video/lc7580.h,VIDEOS["LC7580"] = true
--------------------------------------------------
-if (VIDEOS["LC7580"]~=null) then
+if VIDEOS["LC7580"] then
files {
MAME_DIR .. "src/devices/video/lc7580.cpp",
MAME_DIR .. "src/devices/video/lc7580.h",
@@ -672,7 +804,7 @@ end
--@src/devices/video/lc7985.h,VIDEOS["LC7985"] = true
--------------------------------------------------
-if (VIDEOS["LC7985"]~=null) then
+if VIDEOS["LC7985"] then
files {
MAME_DIR .. "src/devices/video/lc7985.cpp",
MAME_DIR .. "src/devices/video/lc7985.h",
@@ -684,7 +816,7 @@ end
--@src/devices/video/m50458.h,VIDEOS["M50458"] = true
--------------------------------------------------
-if (VIDEOS["M50458"]~=null) then
+if VIDEOS["M50458"] then
files {
MAME_DIR .. "src/devices/video/m50458.cpp",
MAME_DIR .. "src/devices/video/m50458.h",
@@ -696,7 +828,7 @@ end
--@src/devices/video/mb86292.h,VIDEOS["MB86292"] = true
---------------------------------------------------
-if (VIDEOS["MB86292"]~=null) then
+if VIDEOS["MB86292"] then
files {
MAME_DIR .. "src/devices/video/mb86292.cpp",
MAME_DIR .. "src/devices/video/mb86292.h",
@@ -708,7 +840,7 @@ end
--@src/devices/video/mb88303.h,VIDEOS["MB88303"] = true
---------------------------------------------------
-if (VIDEOS["MB88303"]~=null) then
+if VIDEOS["MB88303"] then
files {
MAME_DIR .. "src/devices/video/mb88303.cpp",
MAME_DIR .. "src/devices/video/mb88303.h",
@@ -720,7 +852,7 @@ end
--@src/devices/video/mb90082.h,VIDEOS["MB90082"] = true
--------------------------------------------------
-if (VIDEOS["MB90082"]~=null) then
+if VIDEOS["MB90082"] then
files {
MAME_DIR .. "src/devices/video/mb90082.cpp",
MAME_DIR .. "src/devices/video/mb90082.h",
@@ -732,7 +864,7 @@ end
--@src/devices/video/mb_vcu.h,VIDEOS["MB_VCU"] = true
--------------------------------------------------
-if (VIDEOS["MB_VCU"]~=null) then
+if VIDEOS["MB_VCU"] then
files {
MAME_DIR .. "src/devices/video/mb_vcu.cpp",
MAME_DIR .. "src/devices/video/mb_vcu.h",
@@ -744,7 +876,7 @@ end
--@src/devices/video/mc68328lcd.h,VIDEOS["MC68328LCD"] = true
--------------------------------------------------
-if (VIDEOS["MC68328LCD"]~=null) then
+if VIDEOS["MC68328LCD"] then
files {
MAME_DIR .. "src/devices/video/mc68328lcd.cpp",
MAME_DIR .. "src/devices/video/mc68328lcd.h",
@@ -756,7 +888,7 @@ end
--@src/devices/video/mc6845.h,VIDEOS["MC6845"] = true
--------------------------------------------------
-if (VIDEOS["MC6845"]~=null) then
+if VIDEOS["MC6845"] then
files {
MAME_DIR .. "src/devices/video/mc6845.cpp",
MAME_DIR .. "src/devices/video/mc6845.h",
@@ -768,7 +900,7 @@ end
--@src/devices/video/mc6847.h,VIDEOS["MC6847"] = true
--------------------------------------------------
-if (VIDEOS["MC6847"]~=null) then
+if VIDEOS["MC6847"] then
files {
MAME_DIR .. "src/devices/video/mc6847.cpp",
MAME_DIR .. "src/devices/video/mc6847.h",
@@ -780,7 +912,7 @@ end
--@src/devices/video/md4330b.h,VIDEOS["MD4330B"] = true
--------------------------------------------------
-if (VIDEOS["MD4330B"]~=null) then
+if VIDEOS["MD4330B"] then
files {
MAME_DIR .. "src/devices/video/md4330b.cpp",
MAME_DIR .. "src/devices/video/md4330b.h",
@@ -792,7 +924,7 @@ end
--@src/devices/video/mm5445.h,VIDEOS["MM5445"] = true
--------------------------------------------------
-if (VIDEOS["MM5445"]~=null) then
+if VIDEOS["MM5445"] then
files {
MAME_DIR .. "src/devices/video/mm5445.cpp",
MAME_DIR .. "src/devices/video/mm5445.h",
@@ -801,73 +933,85 @@ end
--------------------------------------------------
--
---@src/devices/video/mr9735.h,VIDEOS["MR9735"] = true
+--@src/devices/video/mn1252.h,VIDEOS["MN1252"] = true
--------------------------------------------------
-if (VIDEOS["MR9735"]~=null) then
+if VIDEOS["MN1252"] then
files {
- MAME_DIR .. "src/devices/video/mr9735.cpp",
- MAME_DIR .. "src/devices/video/mr9735.h",
+ MAME_DIR .. "src/devices/video/mn1252.cpp",
+ MAME_DIR .. "src/devices/video/mn1252.h",
}
end
--------------------------------------------------
--
---@src/devices/video/msm6222b.h,VIDEOS["MSM6222B"] = true
+--@src/devices/video/mos6566.h,VIDEOS["MOS6566"] = true
--------------------------------------------------
-if (VIDEOS["MSM6222B"]~=null) then
+if VIDEOS["MOS6566"] then
files {
- MAME_DIR .. "src/devices/video/msm6222b.cpp",
- MAME_DIR .. "src/devices/video/msm6222b.h",
+ MAME_DIR .. "src/devices/video/mos6566.cpp",
+ MAME_DIR .. "src/devices/video/mos6566.h",
}
end
--------------------------------------------------
--
---@src/devices/video/msm6255.h,VIDEOS["MSM6255"] = true
+--@src/devices/video/mos8563.h,VIDEOS["MOS8563"] = true
--------------------------------------------------
-if (VIDEOS["MSM6255"]~=null) then
+if VIDEOS["MOS8563"] then
files {
- MAME_DIR .. "src/devices/video/msm6255.cpp",
- MAME_DIR .. "src/devices/video/msm6255.h",
+ MAME_DIR .. "src/devices/video/mos8563.cpp",
+ MAME_DIR .. "src/devices/video/mos8563.h",
}
end
--------------------------------------------------
--
---@src/devices/video/mos6566.h,VIDEOS["MOS6566"] = true
+--@src/devices/video/mr9735.h,VIDEOS["MR9735"] = true
--------------------------------------------------
-if (VIDEOS["MOS6566"]~=null) then
+if VIDEOS["MR9735"] then
files {
- MAME_DIR .. "src/devices/video/mos6566.cpp",
- MAME_DIR .. "src/devices/video/mos6566.h",
+ MAME_DIR .. "src/devices/video/mr9735.cpp",
+ MAME_DIR .. "src/devices/video/mr9735.h",
}
end
--------------------------------------------------
--
---@src/devices/video/mos8563.h,VIDEOS["MOS8563"] = true
+--@src/devices/video/msm6222b.h,VIDEOS["MSM6222B"] = true
--------------------------------------------------
-if (VIDEOS["MOS8563"]~=null) then
+if VIDEOS["MSM6222B"] then
files {
- MAME_DIR .. "src/devices/video/mos8563.cpp",
- MAME_DIR .. "src/devices/video/mos8563.h",
+ MAME_DIR .. "src/devices/video/msm6222b.cpp",
+ MAME_DIR .. "src/devices/video/msm6222b.h",
}
end
--------------------------------------------------
--
---@src/devices/video/mn1252.h,VIDEOS["MN1252"] = true
+--@src/devices/video/msm6255.h,VIDEOS["MSM6255"] = true
--------------------------------------------------
-if (VIDEOS["MN1252"]~=null) then
+if VIDEOS["MSM6255"] then
files {
- MAME_DIR .. "src/devices/video/mn1252.cpp",
- MAME_DIR .. "src/devices/video/mn1252.h",
+ MAME_DIR .. "src/devices/video/msm6255.cpp",
+ MAME_DIR .. "src/devices/video/msm6255.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/nt7534.h,VIDEOS["NT7534"] = true
+--------------------------------------------------
+
+if VIDEOS["NT7534"] then
+ files {
+ MAME_DIR .. "src/devices/video/nt7534.cpp",
+ MAME_DIR .. "src/devices/video/nt7534.h",
}
end
@@ -876,7 +1020,7 @@ end
--@src/devices/video/pc_vga.h,VIDEOS["PC_VGA"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA"]~=null) then
+if VIDEOS["PC_VGA"] then
files {
MAME_DIR .. "src/devices/video/pc_vga.cpp",
MAME_DIR .. "src/devices/video/pc_vga.h",
@@ -888,7 +1032,7 @@ end
--@src/devices/video/pc_vga_alliance.h,VIDEOS["PC_VGA_ALLIANCE"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_ALLIANCE"]~=null) then
+if VIDEOS["PC_VGA_ALLIANCE"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_alliance.cpp",
MAME_DIR .. "src/devices/video/pc_vga_alliance.h",
@@ -900,7 +1044,7 @@ end
--@src/devices/video/pc_vga_ati.h,VIDEOS["PC_VGA_ATI"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_ATI"]~=null) then
+if VIDEOS["PC_VGA_ATI"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_ati.cpp",
MAME_DIR .. "src/devices/video/pc_vga_ati.h",
@@ -912,7 +1056,7 @@ end
--@src/devices/video/ibm8514a.h,VIDEOS["IBM8514A"] = true
--------------------------------------------------
-if (VIDEOS["IBM8514A"]~=null) then
+if VIDEOS["IBM8514A"] then
files {
MAME_DIR .. "src/devices/video/ibm8514a.cpp",
MAME_DIR .. "src/devices/video/ibm8514a.h",
@@ -924,7 +1068,7 @@ end
--@src/devices/video/ati_mach8.h,VIDEOS["ATI_MACH8"] = true
--------------------------------------------------
-if (VIDEOS["ATI_MACH8"]~=null) then
+if VIDEOS["ATI_MACH8"] then
files {
MAME_DIR .. "src/devices/video/ati_mach8.cpp",
MAME_DIR .. "src/devices/video/ati_mach8.h",
@@ -936,7 +1080,7 @@ end
--@src/devices/video/ati_mach8.h,VIDEOS["ATI_MACH32"] = true
--------------------------------------------------
-if (VIDEOS["ATI_MACH32"]~=null) then
+if VIDEOS["ATI_MACH32"] then
files {
MAME_DIR .. "src/devices/video/ati_mach32.cpp",
MAME_DIR .. "src/devices/video/ati_mach32.h",
@@ -948,7 +1092,7 @@ end
--@src/devices/video/pc_vga_cirrus.h,VIDEOS["PC_VGA_CIRRUS"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_CIRRUS"]~=null) then
+if VIDEOS["PC_VGA_CIRRUS"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_cirrus.cpp",
MAME_DIR .. "src/devices/video/pc_vga_cirrus.h",
@@ -960,7 +1104,7 @@ end
--@src/devices/video/pc_vga_matrox.h,VIDEOS["PC_VGA_MATROX"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_MATROX"]~=null) then
+if VIDEOS["PC_VGA_MATROX"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_matrox.cpp",
MAME_DIR .. "src/devices/video/pc_vga_matrox.h",
@@ -972,7 +1116,7 @@ end
--@src/devices/video/pc_vga_mediagx.h,VIDEOS["PC_VGA_MEDIAGX"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_MEDIAGX"]~=null) then
+if VIDEOS["PC_VGA_MEDIAGX"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_mediagx.cpp",
MAME_DIR .. "src/devices/video/pc_vga_mediagx.h",
@@ -984,7 +1128,7 @@ end
--@src/devices/video/pc_vga_nvidia.h,VIDEOS["PC_VGA_NVIDIA"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_NVIDIA"]~=null) then
+if VIDEOS["PC_VGA_NVIDIA"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_nvidia.cpp",
MAME_DIR .. "src/devices/video/pc_vga_nvidia.h",
@@ -996,7 +1140,7 @@ end
--@src/devices/video/pc_vga_oak.h,VIDEOS["PC_VGA_OAK"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_OAK"]~=null) then
+if VIDEOS["PC_VGA_OAK"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_oak.cpp",
MAME_DIR .. "src/devices/video/pc_vga_oak.h",
@@ -1008,7 +1152,7 @@ end
--@src/devices/video/pc_vga_paradise.h,VIDEOS["PC_VGA_PARADISE"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_PARADISE"]~=null) then
+if VIDEOS["PC_VGA_PARADISE"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_paradise.cpp",
MAME_DIR .. "src/devices/video/pc_vga_paradise.h",
@@ -1020,7 +1164,7 @@ end
--@src/devices/video/wd90c26.h,VIDEOS["WD90C26"] = true
--------------------------------------------------
-if (VIDEOS["WD90C26"]~=null) then
+if VIDEOS["WD90C26"] then
files {
MAME_DIR .. "src/devices/video/wd90c26.cpp",
MAME_DIR .. "src/devices/video/wd90c26.h",
@@ -1032,7 +1176,7 @@ end
--@src/devices/video/pc_vga_s3.h,VIDEOS["PC_VGA_S3"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_S3"]~=null) then
+if VIDEOS["PC_VGA_S3"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_s3.cpp",
MAME_DIR .. "src/devices/video/pc_vga_s3.h",
@@ -1044,7 +1188,7 @@ end
--@src/devices/video/s3virge.h,VIDEOS["S3VIRGE"] = true
--------------------------------------------------
-if (VIDEOS["S3VIRGE"]~=null) then
+if VIDEOS["S3VIRGE"] then
files {
MAME_DIR .. "src/devices/video/s3virge.cpp",
MAME_DIR .. "src/devices/video/s3virge.h",
@@ -1056,7 +1200,7 @@ end
--@src/devices/video/pc_vga_sis.h,VIDEOS["PC_VGA_SIS"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_SIS"]~=null) then
+if VIDEOS["PC_VGA_SIS"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_sis.cpp",
MAME_DIR .. "src/devices/video/pc_vga_sis.h",
@@ -1068,7 +1212,7 @@ end
--@src/devices/video/pc_vga_trident.h,VIDEOS["PC_VGA_TRIDENT"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_TRIDENT"]~=null) then
+if VIDEOS["PC_VGA_TRIDENT"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_trident.cpp",
MAME_DIR .. "src/devices/video/pc_vga_trident.h",
@@ -1080,7 +1224,7 @@ end
--@src/devices/video/pc_vga_tseng.h,VIDEOS["PC_VGA_TSENG"] = true
--------------------------------------------------
-if (VIDEOS["PC_VGA_TSENG"]~=null) then
+if VIDEOS["PC_VGA_TSENG"] then
files {
MAME_DIR .. "src/devices/video/pc_vga_tseng.cpp",
MAME_DIR .. "src/devices/video/pc_vga_tseng.h",
@@ -1092,7 +1236,7 @@ end
--@src/devices/video/pc_xga.h,VIDEOS["PC_XGA"] = true
--------------------------------------------------
-if (VIDEOS["PC_XGA"]~=null) then
+if VIDEOS["PC_XGA"] then
files {
MAME_DIR .. "src/devices/video/pc_xga.cpp",
MAME_DIR .. "src/devices/video/pc_xga.h",
@@ -1105,7 +1249,7 @@ end
--@src/devices/video/pcd8544.h,VIDEOS["PCD8544"] = true
--------------------------------------------------
-if (VIDEOS["PCD8544"]~=null) then
+if VIDEOS["PCD8544"] then
files {
MAME_DIR .. "src/devices/video/pcd8544.cpp",
MAME_DIR .. "src/devices/video/pcd8544.h",
@@ -1117,7 +1261,7 @@ end
--@src/devices/video/pcf2100.h,VIDEOS["PCF2100"] = true
--------------------------------------------------
-if (VIDEOS["PCF2100"]~=null) then
+if VIDEOS["PCF2100"] then
files {
MAME_DIR .. "src/devices/video/pcf2100.cpp",
MAME_DIR .. "src/devices/video/pcf2100.h",
@@ -1126,10 +1270,48 @@ end
--------------------------------------------------
--
+--@src/devices/video/ppu2c0x.h,VIDEOS["PPU2C0X"] = true
+--------------------------------------------------
+
+if VIDEOS["PPU2C0X"] then
+ files {
+ MAME_DIR .. "src/devices/video/ppu2c0x.cpp",
+ MAME_DIR .. "src/devices/video/ppu2c0x.h",
+ MAME_DIR .. "src/devices/video/ppu2c0x_vt.cpp",
+ MAME_DIR .. "src/devices/video/ppu2c0x_vt.h",
+ MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.cpp",
+ MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/ps2gif.h,VIDEOS["PS2GIF"] = true
+--------------------------------------------------
+if VIDEOS["PS2GIF"] then
+ files {
+ MAME_DIR .. "src/devices/video/ps2gif.cpp",
+ MAME_DIR .. "src/devices/video/ps2gif.h",
+ }
+end
+
+--------------------------------------------------
+--
+--@src/devices/video/ps2gs.h,VIDEOS["PS2GS"] = true
+--------------------------------------------------
+if VIDEOS["PS2GS"] then
+ files {
+ MAME_DIR .. "src/devices/video/ps2gs.cpp",
+ MAME_DIR .. "src/devices/video/ps2gs.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/psx.h,VIDEOS["PSX"] = true
--------------------------------------------------
-if (VIDEOS["PSX"]~=null) then
+if VIDEOS["PSX"] then
files {
MAME_DIR .. "src/devices/video/psx.cpp",
MAME_DIR .. "src/devices/video/psx.h",
@@ -1138,10 +1320,21 @@ end
--------------------------------------------------
--
+--@src/devices/video/pwm.h,VIDEOS["PWM_DISPLAY"] = true
+--------------------------------------------------
+if VIDEOS["PWM_DISPLAY"] then
+ files {
+ MAME_DIR .. "src/devices/video/pwm.cpp",
+ MAME_DIR .. "src/devices/video/pwm.h",
+ }
+end
+
+--------------------------------------------------
+--
--@src/devices/video/ramdac.h,VIDEOS["RAMDAC"] = true
--------------------------------------------------
-if (VIDEOS["RAMDAC"]~=null) then
+if VIDEOS["RAMDAC"] then
files {
MAME_DIR .. "src/devices/video/ramdac.cpp",
MAME_DIR .. "src/devices/video/ramdac.h",
@@ -1153,7 +1346,7 @@ end
--@src/devices/video/roc10937.h,VIDEOS["ROC10937"] = true
---------------------------------------------------
-if (VIDEOS["ROC10937"]~=null) then
+if VIDEOS["ROC10937"] then
files {
MAME_DIR .. "src/devices/video/roc10937.cpp",
MAME_DIR .. "src/devices/video/roc10937.h",
@@ -1165,7 +1358,7 @@ end
--@src/devices/video/saa5050.h,VIDEOS["SAA5050"] = true
--------------------------------------------------
-if (VIDEOS["SAA5050"]~=null) then
+if VIDEOS["SAA5050"] then
files {
MAME_DIR .. "src/devices/video/saa5050.cpp",
MAME_DIR .. "src/devices/video/saa5050.h",
@@ -1177,7 +1370,7 @@ end
--@src/devices/video/saa5240.h,VIDEOS["SAA5240"] = true
--------------------------------------------------
-if (VIDEOS["SAA5240"]~=null) then
+if VIDEOS["SAA5240"] then
files {
MAME_DIR .. "src/devices/video/saa5240.cpp",
MAME_DIR .. "src/devices/video/saa5240.h",
@@ -1189,7 +1382,7 @@ end
--@src/devices/video/saa7110.h,VIDEOS["SAA7110"] = true
--------------------------------------------------
-if (VIDEOS["SAA7110"]~=null) then
+if VIDEOS["SAA7110"] then
files {
MAME_DIR .. "src/devices/video/saa7110.cpp",
MAME_DIR .. "src/devices/video/saa7110.h",
@@ -1198,24 +1391,23 @@ end
--------------------------------------------------
--
---@src/devices/video/sn74s262.h,VIDEOS["SN74S262"] = true
+--@src/devices/video/scn2674.h,VIDEOS["SCN2674"] = true
--------------------------------------------------
-
-if (VIDEOS["SN74S262"]~=null) then
+if VIDEOS["SCN2674"] then
files {
- MAME_DIR .. "src/devices/video/sn74s262.cpp",
- MAME_DIR .. "src/devices/video/sn74s262.h",
+ MAME_DIR .. "src/devices/video/scn2674.cpp",
+ MAME_DIR .. "src/devices/video/scn2674.h",
}
end
--------------------------------------------------
--
---@src/devices/video/pwm.h,VIDEOS["PWM_DISPLAY"] = true
+--@src/devices/video/sda5708.h,VIDEOS["SDA5708"] = true
--------------------------------------------------
-if (VIDEOS["PWM_DISPLAY"]~=null) then
+if VIDEOS["SDA5708"] then
files {
- MAME_DIR .. "src/devices/video/pwm.cpp",
- MAME_DIR .. "src/devices/video/pwm.h",
+ MAME_DIR .. "src/devices/video/sda5708.cpp",
+ MAME_DIR .. "src/devices/video/sda5708.h",
}
end
@@ -1223,7 +1415,7 @@ end
--
--@src/devices/video/sed1200.h,VIDEOS["SED1200"] = true
--------------------------------------------------
-if (VIDEOS["SED1200"]~=null) then
+if VIDEOS["SED1200"] then
files {
MAME_DIR .. "src/devices/video/sed1200.cpp",
MAME_DIR .. "src/devices/video/sed1200.h",
@@ -1234,7 +1426,7 @@ end
--
--@src/devices/video/sed1330.h,VIDEOS["SED1330"] = true
--------------------------------------------------
-if (VIDEOS["SED1330"]~=null) then
+if VIDEOS["SED1330"] then
files {
MAME_DIR .. "src/devices/video/sed1330.cpp",
MAME_DIR .. "src/devices/video/sed1330.h",
@@ -1245,7 +1437,7 @@ end
--
--@src/devices/video/sed1356.h,VIDEOS["SED1356"] = true
--------------------------------------------------
-if (VIDEOS["SED1356"]~=null) then
+if VIDEOS["SED1356"] then
files {
MAME_DIR .. "src/devices/video/sed1356.cpp",
MAME_DIR .. "src/devices/video/sed1356.h",
@@ -1256,7 +1448,7 @@ end
--
--@src/devices/video/sed1375.h,VIDEOS["SED1375"] = true
--------------------------------------------------
-if (VIDEOS["SED1375"]~=null) then
+if VIDEOS["SED1375"] then
files {
MAME_DIR .. "src/devices/video/sed1375.cpp",
MAME_DIR .. "src/devices/video/sed1375.h",
@@ -1267,7 +1459,7 @@ end
--
--@src/devices/video/sed1500.h,VIDEOS["SED1500"] = true
--------------------------------------------------
-if (VIDEOS["SED1500"]~=null) then
+if VIDEOS["SED1500"] then
files {
MAME_DIR .. "src/devices/video/sed1500.cpp",
MAME_DIR .. "src/devices/video/sed1500.h",
@@ -1278,7 +1470,7 @@ end
--
--@src/devices/video/sed1520.h,VIDEOS["SED1520"] = true
--------------------------------------------------
-if (VIDEOS["SED1520"]~=null) then
+if VIDEOS["SED1520"] then
files {
MAME_DIR .. "src/devices/video/sed1520.cpp",
MAME_DIR .. "src/devices/video/sed1520.h",
@@ -1287,34 +1479,36 @@ end
--------------------------------------------------
--
---@src/devices/video/scn2674.h,VIDEOS["SCN2674"] = true
+--@src/devices/video/sn74s262.h,VIDEOS["SN74S262"] = true
--------------------------------------------------
-if (VIDEOS["SCN2674"]~=null) then
+
+if VIDEOS["SN74S262"] then
files {
- MAME_DIR .. "src/devices/video/scn2674.cpp",
- MAME_DIR .. "src/devices/video/scn2674.h",
+ MAME_DIR .. "src/devices/video/sn74s262.cpp",
+ MAME_DIR .. "src/devices/video/sn74s262.h",
}
end
--------------------------------------------------
--
---@src/devices/video/sda5708.h,VIDEOS["SDA5708"] = true
+--@src/devices/video/snes_ppu.h,VIDEOS["SNES_PPU"] = true
--------------------------------------------------
-if (VIDEOS["SDA5708"]~=null) then
+if VIDEOS["SNES_PPU"] then
files {
- MAME_DIR .. "src/devices/video/sda5708.cpp",
- MAME_DIR .. "src/devices/video/sda5708.h",
+ MAME_DIR .. "src/devices/video/snes_ppu.cpp",
+ MAME_DIR .. "src/devices/video/snes_ppu.h",
}
end
--------------------------------------------------
--
---@src/devices/video/snes_ppu.h,VIDEOS["SNES_PPU"] = true
+--@src/devices/video/st7626.h,VIDEOS["ST7626"] = true
--------------------------------------------------
-if (VIDEOS["SNES_PPU"]~=null) then
+
+if VIDEOS["ST7626"] then
files {
- MAME_DIR .. "src/devices/video/snes_ppu.cpp",
- MAME_DIR .. "src/devices/video/snes_ppu.h",
+ MAME_DIR .. "src/devices/video/st7626.cpp",
+ MAME_DIR .. "src/devices/video/st7626.h",
}
end
@@ -1323,7 +1517,7 @@ end
--@src/devices/video/t6963c.h,VIDEOS["T6963C"] = true
--------------------------------------------------
-if (VIDEOS["T6963C"]~=null) then
+if VIDEOS["T6963C"] then
files {
MAME_DIR .. "src/devices/video/t6963c.cpp",
MAME_DIR .. "src/devices/video/t6963c.h",
@@ -1335,7 +1529,7 @@ end
--@src/devices/video/t6a04.h,VIDEOS["T6A04"] = true
--------------------------------------------------
-if (VIDEOS["T6A04"]~=null) then
+if VIDEOS["T6A04"] then
files {
MAME_DIR .. "src/devices/video/t6a04.cpp",
MAME_DIR .. "src/devices/video/t6a04.h",
@@ -1347,7 +1541,7 @@ end
--@src/devices/video/tea1002.h,VIDEOS["TEA1002"] = true
--------------------------------------------------
-if (VIDEOS["TEA1002"]~=null) then
+if VIDEOS["TEA1002"] then
files {
MAME_DIR .. "src/devices/video/tea1002.cpp",
MAME_DIR .. "src/devices/video/tea1002.h",
@@ -1359,7 +1553,7 @@ end
--@src/devices/video/tlc34076.h,VIDEOS["TLC34076"] = true
--------------------------------------------------
-if (VIDEOS["TLC34076"]~=null) then
+if VIDEOS["TLC34076"] then
files {
MAME_DIR .. "src/devices/video/tlc34076.cpp",
MAME_DIR .. "src/devices/video/tlc34076.h",
@@ -1371,7 +1565,7 @@ end
--@src/devices/video/tmap038.h,VIDEOS["TMAP038"] = true
--------------------------------------------------
-if (VIDEOS["TMAP038"]~=null) then
+if VIDEOS["TMAP038"] then
files {
MAME_DIR .. "src/devices/video/tmap038.cpp",
MAME_DIR .. "src/devices/video/tmap038.h",
@@ -1383,7 +1577,7 @@ end
--@src/devices/video/tms34061.h,VIDEOS["TMS34061"] = true
--------------------------------------------------
-if (VIDEOS["TMS34061"]~=null) then
+if VIDEOS["TMS34061"] then
files {
MAME_DIR .. "src/devices/video/tms34061.cpp",
MAME_DIR .. "src/devices/video/tms34061.h",
@@ -1395,7 +1589,7 @@ end
--@src/devices/video/tms3556.h,VIDEOS["TMS3556"] = true
--------------------------------------------------
-if (VIDEOS["TMS3556"]~=null) then
+if VIDEOS["TMS3556"] then
files {
MAME_DIR .. "src/devices/video/tms3556.cpp",
MAME_DIR .. "src/devices/video/tms3556.h",
@@ -1407,7 +1601,7 @@ end
--@src/devices/video/tms9927.h,VIDEOS["TMS9927"] = true
--------------------------------------------------
-if (VIDEOS["TMS9927"]~=null) then
+if VIDEOS["TMS9927"] then
files {
MAME_DIR .. "src/devices/video/tms9927.cpp",
MAME_DIR .. "src/devices/video/tms9927.h",
@@ -1419,7 +1613,7 @@ end
--@src/devices/video/tms9928a.h,VIDEOS["TMS9928A"] = true
--------------------------------------------------
-if (VIDEOS["TMS9928A"]~=null) then
+if VIDEOS["TMS9928A"] then
files {
MAME_DIR .. "src/devices/video/tms9928a.cpp",
MAME_DIR .. "src/devices/video/tms9928a.h",
@@ -1431,7 +1625,7 @@ end
--@src/devices/video/upd3301.h,VIDEOS["UPD3301"] = true
--------------------------------------------------
-if (VIDEOS["UPD3301"]~=null) then
+if VIDEOS["UPD3301"] then
files {
MAME_DIR .. "src/devices/video/upd3301.cpp",
MAME_DIR .. "src/devices/video/upd3301.h",
@@ -1443,7 +1637,7 @@ end
--@src/devices/video/upd7220.h,VIDEOS["UPD7220"] = true
--------------------------------------------------
-if (VIDEOS["UPD7220"]~=null) then
+if VIDEOS["UPD7220"] then
files {
MAME_DIR .. "src/devices/video/upd7220.cpp",
MAME_DIR .. "src/devices/video/upd7220.h",
@@ -1455,7 +1649,7 @@ end
--@src/devices/video/upd7227.h,VIDEOS["UPD7227"] = true
--------------------------------------------------
-if (VIDEOS["UPD7227"]~=null) then
+if VIDEOS["UPD7227"] then
files {
MAME_DIR .. "src/devices/video/upd7227.cpp",
MAME_DIR .. "src/devices/video/upd7227.h",
@@ -1467,7 +1661,7 @@ end
--@src/devices/video/upd72120.h,VIDEOS["UPD72120"] = true
--------------------------------------------------
-if (VIDEOS["UPD72120"]~=null) then
+if VIDEOS["UPD72120"] then
files {
MAME_DIR .. "src/devices/video/upd72120.cpp",
MAME_DIR .. "src/devices/video/upd72120.h",
@@ -1479,7 +1673,7 @@ end
--@src/devices/video/v9938.h,VIDEOS["V9938"] = true
--------------------------------------------------
-if (VIDEOS["V9938"]~=null) then
+if VIDEOS["V9938"] then
files {
MAME_DIR .. "src/devices/video/v9938.cpp",
MAME_DIR .. "src/devices/video/v9938.h",
@@ -1488,22 +1682,10 @@ end
--------------------------------------------------
--
---@src/devices/video/zeus2.h,VIDEOS["ZEUS2"] = true
---------------------------------------------------
-
-if (VIDEOS["ZEUS2"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/zeus2.cpp",
- MAME_DIR .. "src/devices/video/zeus2.h",
- }
-end
-
---------------------------------------------------
---
--@src/devices/video/voodoo.h,VIDEOS["VOODOO"] = true
--------------------------------------------------
-if (VIDEOS["VOODOO"]~=null) then
+if VIDEOS["VOODOO"] then
files {
MAME_DIR .. "src/devices/video/voodoo.cpp",
MAME_DIR .. "src/devices/video/voodoo.h",
@@ -1522,7 +1704,7 @@ end
--@src/devices/video/voodoo_pci.h,VIDEOS["VOODOO_PCI"] = true
--------------------------------------------------
-if (VIDEOS["VOODOO_PCI"]~=null) then
+if VIDEOS["VOODOO_PCI"] then
files {
MAME_DIR .. "src/devices/video/voodoo_pci.cpp",
MAME_DIR .. "src/devices/video/voodoo_pci.h",
@@ -1534,7 +1716,7 @@ end
--@src/devices/video/crtc_ega.h,VIDEOS["CRTC_EGA"] = true
--------------------------------------------------
-if (VIDEOS["CRTC_EGA"]~=null) then
+if VIDEOS["CRTC_EGA"] then
files {
MAME_DIR .. "src/devices/video/crtc_ega.cpp",
MAME_DIR .. "src/devices/video/crtc_ega.h",
@@ -1543,134 +1725,10 @@ end
--------------------------------------------------
--
---@src/devices/video/jangou_blitter.h,VIDEOS["JANGOU_BLITTER"] = true
---------------------------------------------------
-
-if (VIDEOS["JANGOU_BLITTER"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/jangou_blitter.cpp",
- MAME_DIR .. "src/devices/video/jangou_blitter.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/gb_lcd.h,VIDEOS["GB_LCD"] = true
---------------------------------------------------
-
-if (VIDEOS["GB_LCD"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/gb_lcd.cpp",
- MAME_DIR .. "src/devices/video/gb_lcd.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/gba_lcd.h,VIDEOS["GBA_LCD"] = true
---------------------------------------------------
-
-if (VIDEOS["GBA_LCD"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/gba_lcd.cpp",
- MAME_DIR .. "src/devices/video/gba_lcd.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/ef9369.h,VIDEOS["EF9369"] = true
---------------------------------------------------
-
-if (VIDEOS["EF9369"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ef9369.cpp",
- MAME_DIR .. "src/devices/video/ef9369.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/ppu2c0x.h,VIDEOS["PPU2C0X"] = true
---------------------------------------------------
-
-if (VIDEOS["PPU2C0X"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ppu2c0x.cpp",
- MAME_DIR .. "src/devices/video/ppu2c0x.h",
- MAME_DIR .. "src/devices/video/ppu2c0x_vt.cpp",
- MAME_DIR .. "src/devices/video/ppu2c0x_vt.h",
- MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.cpp",
- MAME_DIR .. "src/devices/video/ppu2c0x_sh6578.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/bt431.h,VIDEOS["BT431"] = true
---------------------------------------------------
-
-if (VIDEOS["BT431"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt431.cpp",
- MAME_DIR .. "src/devices/video/bt431.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/bt459.h,VIDEOS["BT459"] = true
---------------------------------------------------
-
-if (VIDEOS["BT459"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt459.cpp",
- MAME_DIR .. "src/devices/video/bt459.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/bt45x.h,VIDEOS["BT45X"] = true
---------------------------------------------------
-
-if (VIDEOS["BT45X"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt45x.cpp",
- MAME_DIR .. "src/devices/video/bt45x.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/bt47x.h,VIDEOS["BT47X"] = true
---------------------------------------------------
-
-if (VIDEOS["BT47X"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt47x.cpp",
- MAME_DIR .. "src/devices/video/bt47x.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/bt48x.h,VIDEOS["BT48X"] = true
---------------------------------------------------
-
-if (VIDEOS["BT48X"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt48x.cpp",
- MAME_DIR .. "src/devices/video/bt48x.h",
- }
-end
-
---------------------------------------------------
---
--@src/devices/video/imagetek_i4100.h,VIDEOS["I4100"] = true
--------------------------------------------------
-if (VIDEOS["I4100"]~=null) then
+if VIDEOS["I4100"] then
files {
MAME_DIR .. "src/devices/video/imagetek_i4100.cpp",
MAME_DIR .. "src/devices/video/imagetek_i4100.h",
@@ -1679,21 +1737,9 @@ end
--------------------------------------------------
--
---@src/devices/video/dp8510.h,VIDEOS["DP8510"] = true
---------------------------------------------------
-
-if (VIDEOS["DP8510"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/dp8510.cpp",
- MAME_DIR .. "src/devices/video/dp8510.h",
- }
-end
-
---------------------------------------------------
---
--@src/devices/video/topcat.h,VIDEOS["TOPCAT"] = true
--------------------------------------------------
-if (VIDEOS["TOPCAT"]~=null) then
+if VIDEOS["TOPCAT"] then
files {
MAME_DIR .. "src/devices/video/topcat.cpp",
MAME_DIR .. "src/devices/video/topcat.h",
@@ -1704,7 +1750,7 @@ end
--
--@src/devices/video/catseye.h,VIDEOS["CATSEYE"] = true
--------------------------------------------------
-if (VIDEOS["CATSEYE"]~=null) then
+if VIDEOS["CATSEYE"] then
files {
MAME_DIR .. "src/devices/video/catseye.cpp",
MAME_DIR .. "src/devices/video/catseye.h",
@@ -1716,7 +1762,7 @@ end
--
--@src/devices/video/nereid.h,VIDEOS["NEREID"] = true
--------------------------------------------------
-if (VIDEOS["NEREID"]~=null) then
+if VIDEOS["NEREID"] then
files {
MAME_DIR .. "src/devices/video/nereid.cpp",
MAME_DIR .. "src/devices/video/nereid.h",
@@ -1725,32 +1771,10 @@ end
--------------------------------------------------
--
---@src/devices/video/ps2gif.h,VIDEOS["PS2GIF"] = true
---------------------------------------------------
-if (VIDEOS["PS2GIF"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ps2gif.cpp",
- MAME_DIR .. "src/devices/video/ps2gif.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/ps2gs.h,VIDEOS["PS2GS"] = true
---------------------------------------------------
-if (VIDEOS["PS2GS"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/ps2gs.cpp",
- MAME_DIR .. "src/devices/video/ps2gs.h",
- }
-end
-
---------------------------------------------------
---
--@src/devices/video/vrender0.h,VIDEOS["VRENDER0"] = true
--------------------------------------------------
-if (VIDEOS["VRENDER0"]~=null) then
+if VIDEOS["VRENDER0"] then
files {
MAME_DIR .. "src/devices/video/vrender0.cpp",
MAME_DIR .. "src/devices/video/vrender0.h",
@@ -1759,25 +1783,25 @@ end
--------------------------------------------------
--
---@src/devices/video/avgdvg.h,VIDEOS["AVGDVG"] = true
+--@src/devices/video/x1_001.h,VIDEOS["X1_001"] = true
--------------------------------------------------
-if (VIDEOS["AVGDVG"]~=null) then
+if VIDEOS["X1_001"] then
files {
- MAME_DIR .. "src/devices/video/avgdvg.cpp",
- MAME_DIR .. "src/devices/video/avgdvg.h",
+ MAME_DIR .. "src/devices/video/x1_001.cpp",
+ MAME_DIR .. "src/devices/video/x1_001.h",
}
end
--------------------------------------------------
--
---@src/devices/video/x1_001.h,VIDEOS["X1_001"] = true
+--@src/devices/video/zeus2.h,VIDEOS["ZEUS2"] = true
--------------------------------------------------
-if (VIDEOS["X1_001"]~=null) then
+if VIDEOS["ZEUS2"] then
files {
- MAME_DIR .. "src/devices/video/x1_001.cpp",
- MAME_DIR .. "src/devices/video/x1_001.h",
+ MAME_DIR .. "src/devices/video/zeus2.cpp",
+ MAME_DIR .. "src/devices/video/zeus2.h",
}
end
@@ -1786,7 +1810,7 @@ end
--@src/devices/video/zr36060.h,VIDEOS["ZR36060"] = true
--------------------------------------------------
-if (VIDEOS["ZR36060"]~=null) then
+if VIDEOS["ZR36060"] then
files {
MAME_DIR .. "src/devices/video/zr36060.cpp",
MAME_DIR .. "src/devices/video/zr36060.h",
@@ -1798,33 +1822,9 @@ end
--@src/devices/video/zr36110.h,VIDEOS["ZR36110"] = true
--------------------------------------------------
-if (VIDEOS["ZR36110"]~=null) then
+if VIDEOS["ZR36110"] then
files {
MAME_DIR .. "src/devices/video/zr36110.cpp",
MAME_DIR .. "src/devices/video/zr36110.h",
}
end
-
---------------------------------------------------
---
---@src/devices/video/bt450.h,VIDEOS["BT450"] = true
---------------------------------------------------
-
-if (VIDEOS["BT450"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/bt450.cpp",
- MAME_DIR .. "src/devices/video/bt450.h",
- }
-end
-
---------------------------------------------------
---
---@src/devices/video/st7626.h,VIDEOS["ST7626"] = true
---------------------------------------------------
-
-if (VIDEOS["ST7626"]~=null) then
- files {
- MAME_DIR .. "src/devices/video/st7626.cpp",
- MAME_DIR .. "src/devices/video/st7626.h",
- }
-end