diff options
author | 2021-02-23 21:12:22 +0900 | |
---|---|---|
committer | 2021-02-23 23:12:22 +1100 | |
commit | 0a2caa105dafac435294f9f33fa56c35c299d004 (patch) | |
tree | efae02f1dfabf0dc03183443b934387bc35dd917 /scripts/src | |
parent | e6caf6fb9c697bc2b4c95d67111de54e7029eb8d (diff) |
Refactored Seta sound, adding preliminary ST0032 sound support. (#7800)
* Renamed sound/nile.cpp to sound/setapcm.cpp.
* Added preliminary support for 16-voice ST0032 variant.
* jclub2.cpp: Hooked up ST0032 sound.
* jclub2.cpp, srmp6.cpp: Derive sound clocks from crystal frequencies.
Diffstat (limited to 'scripts/src')
-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 9844605eeae..a9b35f65675 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -853,7 +853,7 @@ end --------------------------------------------------- -- Seta custom sound chips --@src/devices/sound/st0016.h,SOUNDS["ST0016"] = true ---@src/devices/sound/nile.h,SOUNDS["NILE"] = true +--@src/devices/sound/setapcm.h,SOUNDS["SETAPCM"] = true --@src/devices/sound/x1_010.h,SOUNDS["X1_010"] = true --------------------------------------------------- @@ -864,10 +864,10 @@ if (SOUNDS["ST0016"]~=null) then } end -if (SOUNDS["NILE"]~=null) then +if (SOUNDS["SETAPCM"]~=null) then files { - MAME_DIR .. "src/devices/sound/nile.cpp", - MAME_DIR .. "src/devices/sound/nile.h", + MAME_DIR .. "src/devices/sound/setapcm.cpp", + MAME_DIR .. "src/devices/sound/setapcm.h", } end |