summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/src/sound.lua
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2017-03-01 22:27:03 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2017-03-01 22:27:03 +1100
commite9063720e5fc53dad73d04125545da5954bbd829 (patch)
tree84e7f48266f9a2bf4c6569044912eb8bf6c6e4bd /docs/release/scripts/src/sound.lua
parent493e128506b183a81bc4571ce00f5713b41aea8c (diff)
0.183 Release filestag183
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r--docs/release/scripts/src/sound.lua29
1 files changed, 19 insertions, 10 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua
index ab05c06847c..a4797ce9bf3 100644
--- a/docs/release/scripts/src/sound.lua
+++ b/docs/release/scripts/src/sound.lua
@@ -22,7 +22,7 @@ files {
-- DACs
--@src/devices/sound/dac.h,SOUNDS["DAC"] = true
--@src/devices/sound/dmadac.h,SOUNDS["DMADAC"] = true
---@src/devices/sound/speaker.h,SOUNDS["SPEAKER"] = true
+--@src/devices/sound/spkrdev.h,SOUNDS["SPEAKER"] = true
--@src/devices/sound/beep.h,SOUNDS["BEEP"] = true
---------------------------------------------------
@@ -42,8 +42,8 @@ end
if (SOUNDS["SPEAKER"]~=null) then
files {
- MAME_DIR .. "src/devices/sound/speaker.cpp",
- MAME_DIR .. "src/devices/sound/speaker.h",
+ MAME_DIR .. "src/devices/sound/spkrdev.cpp",
+ MAME_DIR .. "src/devices/sound/spkrdev.h",
}
end
@@ -154,13 +154,13 @@ end
---------------------------------------------------
-- Amiga audio hardware
---@src/devices/sound/amiga.h,SOUNDS["AMIGA"] = true
+--@src/devices/machine/8364_paula.h,SOUNDS["PAULA_8364"] = true
---------------------------------------------------
-if (SOUNDS["AMIGA"]~=null) then
+if (SOUNDS["PAULA_8364"]~=null) then
files {
- MAME_DIR .. "src/devices/sound/amiga.cpp",
- MAME_DIR .. "src/devices/sound/amiga.h",
+ MAME_DIR .. "src/devices/machine/8364_paula.cpp",
+ MAME_DIR .. "src/devices/machine/8364_paula.h",
}
end
@@ -755,9 +755,6 @@ if (SOUNDS["QSOUND"]~=null) then
files {
MAME_DIR .. "src/devices/sound/qsound.cpp",
MAME_DIR .. "src/devices/sound/qsound.h",
- MAME_DIR .. "src/devices/cpu/dsp16/dsp16.cpp",
- MAME_DIR .. "src/devices/cpu/dsp16/dsp16.h",
- MAME_DIR .. "src/devices/cpu/dsp16/dsp16dis.cpp",
}
end
@@ -1424,3 +1421,15 @@ if (SOUNDS["MM5837"]~=null) then
MAME_DIR .. "src/devices/sound/mm5837.h",
}
end
+
+---------------------------------------------------
+-- Intelligent Designs DAVE
+--@src/devices/sound/dave.h,MACHINES["DAVE"] = true
+---------------------------------------------------
+
+if (SOUNDS["DAVE"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/dave.cpp",
+ MAME_DIR .. "src/devices/sound/dave.h",
+ }
+end