diff options
author | 2024-01-16 03:51:26 +0900 | |
---|---|---|
committer | 2024-01-16 05:51:26 +1100 | |
commit | 32e13b0f3c9b430f4208f07d72aa7ffd84b1bcaa (patch) | |
tree | fc5b3bad51276cbfbcf698673f657f6ad80d6601 /scripts/src/sound.lua | |
parent | 451d2ed74334224811e870a1d5ad7e21b7ed491f (diff) |
misc/sttechno.cpp: Implement driver for Kato's Shamisen Brothers. (#11929)
* machine/intelfsh.cpp: Implemented fast mode for Fujitsu flash.
* bus/ata/atapihle.cpp: Made DMA ready configurable.
* sound/stt_sa1.cpp: Emulated STT-SA1 PCM sample playback.
Systems promoted to working
-----------------------------
Shamisen Brothers Vol 1 (V1.01K) [Windy Fairy, Taro, angeryer]
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index ed9652835b2..fe1b86137cd 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -969,6 +969,19 @@ end --------------------------------------------------- +-- ST-Techno custom sound chip +--@src/devices/sound/stt_sa1.h,SOUNDS["STT_SA1"] = true +--------------------------------------------------- + +if (SOUNDS["STT_SA1"]~=null) then + files { + MAME_DIR .. "src/devices/sound/stt_sa1.cpp", + MAME_DIR .. "src/devices/sound/stt_sa1.h", + } +end + + +--------------------------------------------------- -- S14001A speech synthesizer --@src/devices/sound/s14001a.h,SOUNDS["S14001A"] = true --------------------------------------------------- |