diff options
author | 2023-11-25 10:03:22 -0500 | |
---|---|---|
committer | 2023-11-26 02:03:22 +1100 | |
commit | b46f3beddcf5ae7692bed06afd7c91c5eb959712 (patch) | |
tree | 5ca3c45358902993f84ca9ba389a7190f3a4c519 /scripts/src/machine.lua | |
parent | f690048664c3df8fe8c45712d658bec87f3d23bf (diff) |
casio/cz1.cpp: Added driver for Casio CZ-1 and MZ-1 prototype. (#11779)
* casio/ra3.cpp: Added support for software list ROM cartridges.
* sound/upd933.cpp: Clear pending interrupt flag when read.
* sound/upd933.cpp: Implemented presumed pitch modulator register.
New working systems
--------------------
Casio CZ-1 [Mastropiero, Devin Acker]
New working clones
--------------------
Casio MZ-1 (prototype) [Mastropiero, Devin Acker]
New working software items (cz1_cart.xml)
------------------------------------
Orchestra (RC-10) [Edward d-tech]
Organ / Synth. Sound / Sound Effect (RC-30) [Edward d-tech]
Piano / Guitar / Percussion (RC-20) [unknown]
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 cae26f7e89f..e6b9f0cb8fa 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2654,6 +2654,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/msm6200.h,MACHINES["MSM6200"] = true +--------------------------------------------------- + +if (MACHINES["MSM6200"]~=null) then + files { + MAME_DIR .. "src/devices/machine/msm6200.cpp", + MAME_DIR .. "src/devices/machine/msm6200.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/msm6242.h,MACHINES["MSM6242"] = true --------------------------------------------------- |