summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/machine.lua
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2018-05-15 14:53:07 +0700
committer Vas Crabb <cuavas@users.noreply.github.com>2018-05-15 17:53:07 +1000
commit44d80b6fb038216e410ab633ec80d7e8b2dd7bd2 (patch)
tree7345c41c047145e8072d46fe39537ba1e22549e0 /scripts/src/machine.lua
parent37c6acfdad3fddcc28b0589bd61b523d26e40df7 (diff)
proposal: move z80daisy* to devices/machine (#3572)
* proposal: move z80daisy* to devices/machine Seems to me this is a machine, not a CPU? Main reason was to stop the Z80 CPU from being dragged into systems that don't have one just because they use a Z80 family peripheral. * missed this one (nw) * missed a spot (nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r--scripts/src/machine.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 62ff60637c0..95c2f99c582 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -3516,3 +3516,17 @@ if (MACHINES["OUTPUT_LATCH"]~=null) then
MAME_DIR .. "src/devices/machine/output_latch.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/machine/z80daisy.h,MACHINES["Z80DAISY"] = true
+---------------------------------------------------
+
+if (MACHINES["Z80DAISY"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/z80daisy.cpp",
+ MAME_DIR .. "src/devices/machine/z80daisy.h",
+ MAME_DIR .. "src/devices/machine/z80daisy_generic.cpp",
+ MAME_DIR .. "src/devices/machine/z80daisy_generic.h",
+ }
+end