summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author m1macrophage <168948267+m1macrophage@users.noreply.github.com>2026-04-07 08:05:58 -0700
committer GitHub <noreply@github.com>2026-04-07 11:05:58 -0400
commit6b28e21a40eab14825cae70660ca99ee7c0c8bcd (patch)
treedc4f0d73d778f2dfaf39de7715e94e95c45a5a8a /scripts
parent74855f602dc28db896450e77c5d949a4613fa5ed (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.lua12
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
---------------------------------------------------