diff options
| author | 2025-07-25 21:18:21 -0400 | |
|---|---|---|
| committer | 2025-07-25 21:18:21 -0400 | |
| commit | cbf84129bffe7335fd06132ae8254ec47b052d5d (patch) | |
| tree | 567e322ea4319726d3a5493303853ddd37d0e649 /scripts | |
| parent | a4fcc6630d8586e5176f133a1413a0d797b6106a (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')
| -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 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 |
