diff options
author | 2021-06-30 13:14:31 +1000 | |
---|---|---|
committer | 2021-06-30 13:14:31 +1000 | |
commit | e378c928560161407414a728241b5ea4274a8d94 (patch) | |
tree | 7bdd80fef49cf8d74393d23cff08bd31c83e09b8 /docs/release/scripts/src/sound.lua | |
parent | 90d3ce17ab3130bd9af1f38488fab9a937887037 (diff) |
0.233 filestag233
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r-- | docs/release/scripts/src/sound.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua index 6de550d5dde..f9710d96547 100644 --- a/docs/release/scripts/src/sound.lua +++ b/docs/release/scripts/src/sound.lua @@ -10,12 +10,16 @@ ---------------------------------------------------------------------------- files { + MAME_DIR .. "src/devices/sound/bbd.cpp", + MAME_DIR .. "src/devices/sound/bbd.h", MAME_DIR .. "src/devices/sound/flt_biquad.cpp", MAME_DIR .. "src/devices/sound/flt_biquad.h", MAME_DIR .. "src/devices/sound/flt_vol.cpp", MAME_DIR .. "src/devices/sound/flt_vol.h", MAME_DIR .. "src/devices/sound/flt_rc.cpp", MAME_DIR .. "src/devices/sound/flt_rc.h", + MAME_DIR .. "src/devices/sound/mixer.cpp", + MAME_DIR .. "src/devices/sound/mixer.h", MAME_DIR .. "src/devices/sound/samples.cpp", MAME_DIR .. "src/devices/sound/samples.h", } @@ -1169,6 +1173,7 @@ end --------------------------------------------------- -- Yamaha FM synthesizers +--@src/devices/sound/ym2154.h,SOUNDS["YM2154"] = true --@src/devices/sound/ymopm.h,SOUNDS["YM2151"] = true --@src/devices/sound/ymopz.h,SOUNDS["YM2414"] = true --@src/devices/sound/ymopq.h,SOUNDS["YM3806"] = true @@ -1185,6 +1190,13 @@ end --@src/devices/sound/ymopl.h,SOUNDS["Y8950"] = true --------------------------------------------------- +if (SOUNDS["YM2154"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ym2154.cpp", + MAME_DIR .. "src/devices/sound/ym2154.h", + } +end + if (SOUNDS["YM2151"]~=null or SOUNDS["YM2164"]~=null) then files { MAME_DIR .. "src/devices/sound/ymopm.cpp", |