diff options
| author | 2015-09-12 08:59:46 +0200 | |
|---|---|---|
| committer | 2015-09-13 20:16:02 +0200 | |
| commit | 13bbcd283640dbf2c60e6e1777445cc8b5bdcdc0 (patch) | |
| tree | 97003a6f3b66003efe1c7f47b0be58374b50cd48 /scripts | |
| parent | cdf1498d125294f8cc5e4cc02e58c434d9520f85 (diff) | |
Added new devices to build
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/machine.lua | 24 | ||||
| -rw-r--r-- | scripts/target/mame/mess.lua | 2 |
2 files changed, 26 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index d864e129b47..c89a11c63b4 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2366,6 +2366,30 @@ end --------------------------------------------------- -- +--@src/devices/machine/z80sio.h,MACHINES["Z80SIO"] = true +--------------------------------------------------- + +if (MACHINES["Z80SIO"]~=null) then + files { + MAME_DIR .. "src/devices/machine/z80sio.c", + MAME_DIR .. "src/devices/machine/z80sio.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/z80scc.h,MACHINES["Z80SCC"] = true +--------------------------------------------------- + +if (MACHINES["Z80SCC"]~=null) then + files { + MAME_DIR .. "src/devices/machine/z80scc.c", + MAME_DIR .. "src/devices/machine/z80scc.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/z80dma.h,MACHINES["Z80DMA"] = true --------------------------------------------------- diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 0d81b3892d2..40f47ccd23e 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -546,6 +546,8 @@ MACHINES["X76F100"] = true MACHINES["YM2148"] = true MACHINES["Z80CTC"] = true MACHINES["Z80DART"] = true +MACHINES["Z80SIO"] = true +MACHINES["Z80SCC"] = true MACHINES["Z80DMA"] = true MACHINES["Z80PIO"] = true MACHINES["Z80STI"] = true |
