diff options
| author | 2026-04-07 08:05:58 -0700 | |
|---|---|---|
| committer | 2026-04-07 11:05:58 -0400 | |
| commit | 6b28e21a40eab14825cae70660ca99ee7c0c8bcd (patch) | |
| tree | dc4f0d73d778f2dfaf39de7715e94e95c45a5a8a /scripts | |
| parent | 74855f602dc28db896450e77c5d949a4613fa5ed (diff) | |
sound/cem3340.cpp: Implemented preliminary CEM3340 and incorporated it as an LFO on the prophet5. (#15153)
* sound/cem3340.cpp: Initial implementation of CEM3340.
sequential/prophet5.cpp: Incorporated CEM3340 LFO. Corrected mod wheel range.
* src/sound.lua: added cem3340.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/sound.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 95283d41ba7..8d9f8fdd832 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -220,6 +220,18 @@ if SOUNDS["CEM3320"] then end --------------------------------------------------- +-- CEM 3340 voltage-controlled oscillator chip +--@src/devices/sound/cem3340.h,SOUNDS["CEM3340"] = true +--------------------------------------------------- + +if SOUNDS["CEM3340"] then + files { + MAME_DIR .. "src/devices/sound/cem3340.cpp", + MAME_DIR .. "src/devices/sound/cem3340.h", + } +end + +--------------------------------------------------- -- CEM 3360 dual voltage-controlled amplifier chip --@src/devices/sound/cem3320.h,SOUNDS["CEM3360"] = true --------------------------------------------------- |
