summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/sound.lua
diff options
context:
space:
mode:
author Devin Acker <d@revenant1.net>2023-10-17 12:00:22 -0400
committer GitHub <noreply@github.com>2023-10-18 03:00:22 +1100
commit3574a5aa74188c84e7493806678a6b815048c8e6 (patch)
tree4cae1f670dda5133d0a21be3b9ee3fa1c06368ad /scripts/src/sound.lua
parent23b19b492e794b5da4cd3e978e1ed2fa75edef20 (diff)
casio/cz101.cpp: Added sound output and RAM cartridge, and promoted system to working. (#11613)
* casio/ra3.cpp: Added simple Casio RA-3 RAM cartridge device. * sound/upd933.cpp: Emulated Casio/NEC uPD933 phase distortion synthesis chip. Systems promoted to working ---------------- Casio CZ-101 [Devin Acker]
Diffstat (limited to 'scripts/src/sound.lua')
-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 4959be4e3a1..7cb136380c7 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -1466,6 +1466,18 @@ if (SOUNDS["LC82310"]~=null) then
end
---------------------------------------------------
+-- NEC uPD933
+--@src/devices/sound/upd933.h,SOUNDS["UPD933"] = true
+---------------------------------------------------
+
+if (SOUNDS["UPD933"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/upd933.cpp",
+ MAME_DIR .. "src/devices/sound/upd933.h",
+ }
+end
+
+---------------------------------------------------
-- NEC uPD934G
--@src/devices/sound/upd934g.h,SOUNDS["UPD934G"] = true
---------------------------------------------------