diff options
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 |