diff options
author | 2020-10-28 09:09:42 +1100 | |
---|---|---|
committer | 2020-10-28 09:09:42 +1100 | |
commit | b80418e6ecdc886e9de2bed0d44a143049b4429b (patch) | |
tree | ee59d97f9206ce07bea5a4c27de6a1271606ee28 /docs/release/scripts/src/sound.lua | |
parent | 4863b33a1bc890d0e824ab46bf115396d3735667 (diff) |
0.226 Release filestag226
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r-- | docs/release/scripts/src/sound.lua | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua index 27002fb8bd8..4d5f53de389 100644 --- a/docs/release/scripts/src/sound.lua +++ b/docs/release/scripts/src/sound.lua @@ -10,6 +10,8 @@ ---------------------------------------------------------------------------- files { + 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", @@ -1415,17 +1417,6 @@ if (SOUNDS["PCD3311"]~=null) then end --------------------------------------------------- --- Voltage Regulator ---@src/devices/sound/volt_reg.h,SOUNDS["VOLT_REG"] = true ---------------------------------------------------- -if (SOUNDS["VOLT_REG"]~=null) then - files { - MAME_DIR .. "src/devices/sound/volt_reg.cpp", - MAME_DIR .. "src/devices/sound/volt_reg.h", - } -end - ---------------------------------------------------- -- DAC-76 COMDAC --@src/devices/sound/dac76.h,SOUNDS["DAC76"] = true --------------------------------------------------- @@ -1603,3 +1594,15 @@ if (SOUNDS["RP2C33_SOUND"]~=null) then MAME_DIR .. "src/devices/sound/rp2c33_snd.h", } end + +--------------------------------------------------- +-- +--@src/devices/sound/tt5665.h,SOUNDS["TT5665"] = true +--------------------------------------------------- + +if (SOUNDS["TT5665"]~=null) then + files { + MAME_DIR .. "src/devices/sound/tt5665.cpp", + MAME_DIR .. "src/devices/sound/tt5665.h", + } +end |