diff options
author | 2017-06-21 18:34:36 +1200 | |
---|---|---|
committer | 2017-06-21 18:37:23 +1200 | |
commit | 03f21234b8e8cfbffa8f0199696307246122de31 (patch) | |
tree | 67d0a775958c287c8debc37c944b5e4984b35c45 /scripts/src/machine.lua | |
parent | e6f86fa6738ae3d108da1e0d28e3b09ceb9cc989 (diff) |
- Add preliminary Yamaha YM3802 MIDI controller
- Add X68000 expansion device using the YM3802
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index b69727f1475..0b212b50d43 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2683,6 +2683,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ym3802.h,MACHINES["YM3802"] = true +--------------------------------------------------- + +if (MACHINES["YM3802"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ym3802.cpp", + MAME_DIR .. "src/devices/machine/ym3802.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/z80ctc.h,MACHINES["Z80CTC"] = true --------------------------------------------------- |