diff options
author | 2016-11-30 11:08:19 +1100 | |
---|---|---|
committer | 2016-11-30 11:08:19 +1100 | |
commit | 3b4cac12debe8e6d998edb6899908ac6b84a637b (patch) | |
tree | 1ad5a12a0f0b75dcfb0776e05f6e3f1c9919d212 /docs/release/scripts/src/sound.lua | |
parent | 05d642eaca8e1a7ce978e14d11a836513fbf98c8 (diff) |
0.180 Release fileshbmame180
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r-- | docs/release/scripts/src/sound.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua index ba2e689a820..fc555804072 100644 --- a/docs/release/scripts/src/sound.lua +++ b/docs/release/scripts/src/sound.lua @@ -532,6 +532,20 @@ end --------------------------------------------------- +-- MEA8000 Voice Synthesizer +--@src/devices/sound/mea8000.h,SOUNDS["MEA8000"] = true +--------------------------------------------------- + +if (SOUNDS["MEA8000"]~=null) then + files { + MAME_DIR .. "src/devices/sound/mea8000.cpp", + MAME_DIR .. "src/devices/sound/mea8000.h", + } +end + + + +--------------------------------------------------- -- MOS 6560VIC --@src/devices/sound/mos6560.h,SOUNDS["MOS656X"] = true --------------------------------------------------- @@ -1376,3 +1390,14 @@ if (SOUNDS["PCD3311"]~=null) then MAME_DIR .. "src/devices/sound/pcd3311.h", } 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 |