diff options
author | 2024-01-24 01:56:27 -0600 | |
---|---|---|
committer | 2024-01-24 18:56:27 +1100 | |
commit | 035d49869d823e3047b5aaf5e30faf2f93a43d3a (patch) | |
tree | 1eaaac1733205c9082696a55682bdf68b3c1d131 /scripts/src/machine.lua | |
parent | 86f1b80e077c7995944f495c3a20e425b896bbad (diff) |
machine/s2350.cpp: Added AMI S2350 USRT device. (#11959)
Frame format configuration is not implemented yet.
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 af09e563671..87d88dc077c 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3206,6 +3206,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/s2350.h,MACHINES["S2350"] = true +--------------------------------------------------- + +if (MACHINES["S2350"]~=null) then + files { + MAME_DIR .. "src/devices/machine/s2350.cpp", + MAME_DIR .. "src/devices/machine/s2350.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/s2636.h,MACHINES["S2636"] = true --------------------------------------------------- |