summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/sound.lua
diff options
context:
space:
mode:
author Devin Acker <d@revenant1.net>2025-07-25 21:18:21 -0400
committer GitHub <noreply@github.com>2025-07-25 21:18:21 -0400
commitcbf84129bffe7335fd06132ae8254ec47b052d5d (patch)
tree567e322ea4319726d3a5493303853ddd37d0e649 /scripts/src/sound.lua
parenta4fcc6630d8586e5176f133a1413a0d797b6106a (diff)
fz1 and clones: preliminary sound emulation, fz20m: fix SCSI hookup (#13967)
* - fz1 and clones: preliminary sound emulation - fz20m: fix SCSI hookup
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 a1a23792cd0..7f7d7506fe5 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -1809,3 +1809,15 @@ if (SOUNDS["ADC"]~=null) then
MAME_DIR .. "src/devices/sound/adc.h",
}
end
+
+---------------------------------------------------
+-- Casio FZ-series PCM
+--@src/devices/sound/fz_pcm.h,SOUNDS["FZ_PCM"] = true
+---------------------------------------------------
+
+if (SOUNDS["FZ_PCM"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/fz_pcm.cpp",
+ MAME_DIR .. "src/devices/sound/fz_pcm.h",
+ }
+end