diff options
author | 2024-05-02 19:48:15 +0200 | |
---|---|---|
committer | 2024-05-02 19:50:14 +0200 | |
commit | 055b4c669cd31a43b680e2031efdcad7b93fc475 (patch) | |
tree | 78e36e94727fe1359a030d9d5075978f14786e10 /scripts/src/machine.lua | |
parent | 3b5e60b420b8c59d4373828dd4a2cf548523d810 (diff) |
sh7042: Add dmac, mtu, adc, intc, sci, bsc. Separate A and non-A
psr540: Add the swx00
New machines marked as MACHINE_NOT_WORKING
------------------------------------------
Yamaha MU500 [Matt, O. Galibert]
Yamaha MU1000 [Matt, O. Galibert]
Yamaha MU2000 [Matt, O. Galibert]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index d38de5d4293..147271a2626 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -5365,3 +5365,14 @@ if (MACHINES["CAT702"]~=null) then MAME_DIR .. "src/devices/machine/cat702.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/sci4.h,MACHINES["SCI4"] = true +--------------------------------------------------- +if (MACHINES["SCI4"]~=null) then + files { + MAME_DIR .. "src/devices/machine/sci4.cpp", + MAME_DIR .. "src/devices/machine/sci4.h", + } +end |