diff options
author | 2023-05-16 10:19:10 -0400 | |
---|---|---|
committer | 2023-05-16 14:52:48 -0400 | |
commit | f64470c568a5246ebc37e2510a9dd541fe7387f3 (patch) | |
tree | dbfc5c1348240af958736dff47794ee7b2e26297 /scripts/src/sound.lua | |
parent | 9c03e279bf8e14ac9440437f1ff6057148a05097 (diff) |
Add support for the older Votrax SC-01 chip; currently only used by Bally Astrocade-derived arcade hardware. All other devices remain using the Votrax SC-01-A. [Lord Nightmare]
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index 08f421cf056..c1bf4f51af8 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -969,7 +969,6 @@ if (SOUNDS["SP0250"]~=null) then end - --------------------------------------------------- -- S14001A speech synthesizer --@src/devices/sound/s14001a.h,SOUNDS["S14001A"] = true @@ -1122,11 +1121,12 @@ if (SOUNDS["VLM5030"]~=null) then end --------------------------------------------------- --- Votrax speech synthesizer ---@src/devices/sound/votrax.h,SOUNDS["VOTRAX"] = true +-- Votrax SC-01[-A] speech synthesizer +--@src/devices/sound/votrax.h,SOUNDS["VOTRAX_SC01"] = true +--@src/devices/sound/votrax.h,SOUNDS["VOTRAX_SC01A"] = true --------------------------------------------------- -if (SOUNDS["VOTRAX"]~=null) then +if (SOUNDS["VOTRAX_SC01"]~=null or SOUNDS["VOTRAX_SC01A"]~=null) then files { MAME_DIR .. "src/devices/sound/votrax.cpp", MAME_DIR .. "src/devices/sound/votrax.h", |