summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/src/sound.lua
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2021-03-31 15:39:01 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2021-03-31 15:39:01 +1100
commitecb139609f8b12908689a26ee09c487e56ec8db6 (patch)
tree43bfeb9c10d8ab1aeedf970250b9c70e189887c6 /docs/release/scripts/src/sound.lua
parent1c183ec371053a3c2e9d74420cb08ffe4332cf18 (diff)
0.230 Release filestag230
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r--docs/release/scripts/src/sound.lua63
1 files changed, 38 insertions, 25 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua
index a9b35f65675..bda7e45bc0c 100644
--- a/docs/release/scripts/src/sound.lua
+++ b/docs/release/scripts/src/sound.lua
@@ -1170,11 +1170,11 @@ end
---------------------------------------------------
-- Yamaha FM synthesizers
--@src/devices/sound/ym2151.h,SOUNDS["YM2151"] = true
---@src/devices/sound/2203intf.h,SOUNDS["YM2203"] = true
+--@src/devices/sound/ym2203.h,SOUNDS["YM2203"] = true
--@src/devices/sound/ym2413.h,SOUNDS["YM2413"] = true
---@src/devices/sound/2608intf.h,SOUNDS["YM2608"] = true
---@src/devices/sound/2610intf.h,SOUNDS["YM2610"] = true
---@src/devices/sound/2612intf.h,SOUNDS["YM2612"] = true
+--@src/devices/sound/ym2608.h,SOUNDS["YM2608"] = true
+--@src/devices/sound/ym2610.h,SOUNDS["YM2610"] = true
+--@src/devices/sound/ym2612.h,SOUNDS["YM2612"] = true
--@src/devices/sound/3812intf.h,SOUNDS["YM3812"] = true
--@src/devices/sound/3526intf.h,SOUNDS["YM3526"] = true
--@src/devices/sound/8950intf.h,SOUNDS["Y8950"] = true
@@ -1188,6 +1188,8 @@ if (SOUNDS["YM2151"]~=null) then
files {
MAME_DIR .. "src/devices/sound/ym2151.cpp",
MAME_DIR .. "src/devices/sound/ym2151.h",
+ MAME_DIR .. "src/devices/sound/ymfm.cpp",
+ MAME_DIR .. "src/devices/sound/ymfm.h",
}
end
@@ -1201,49 +1203,48 @@ end
if (SOUNDS["YM2203"]~=null or SOUNDS["YM2608"]~=null or SOUNDS["YM2610"]~=null or SOUNDS["YM2610B"]~=null or SOUNDS["YM2612"]~=null or SOUNDS["YM3438"]~=null) then
--if (SOUNDS["YM2203"]~=null) then
files {
- MAME_DIR .. "src/devices/sound/2203intf.cpp",
- MAME_DIR .. "src/devices/sound/2203intf.h",
MAME_DIR .. "src/devices/sound/ay8910.cpp",
MAME_DIR .. "src/devices/sound/ay8910.h",
- MAME_DIR .. "src/devices/sound/fm.cpp",
- MAME_DIR .. "src/devices/sound/fm.h",
+ MAME_DIR .. "src/devices/sound/ym2203.cpp",
+ MAME_DIR .. "src/devices/sound/ym2203.h",
+ MAME_DIR .. "src/devices/sound/ymfm.cpp",
+ MAME_DIR .. "src/devices/sound/ymfm.h",
}
--end
--if (SOUNDS["YM2608"]~=null) then
files {
- MAME_DIR .. "src/devices/sound/2608intf.cpp",
- MAME_DIR .. "src/devices/sound/2608intf.h",
MAME_DIR .. "src/devices/sound/ay8910.cpp",
MAME_DIR .. "src/devices/sound/ay8910.h",
- MAME_DIR .. "src/devices/sound/fm.cpp",
- MAME_DIR .. "src/devices/sound/fm.h",
- MAME_DIR .. "src/devices/sound/ymdeltat.cpp",
- MAME_DIR .. "src/devices/sound/ymdeltat.h",
+ MAME_DIR .. "src/devices/sound/ym2608.cpp",
+ MAME_DIR .. "src/devices/sound/ym2608.h",
+ MAME_DIR .. "src/devices/sound/ymadpcm.cpp",
+ MAME_DIR .. "src/devices/sound/ymadpcm.h",
+ MAME_DIR .. "src/devices/sound/ymfm.cpp",
+ MAME_DIR .. "src/devices/sound/ymfm.h",
}
--end
--if (SOUNDS["YM2610"]~=null or SOUNDS["YM2610B"]~=null) then
files {
- MAME_DIR .. "src/devices/sound/2610intf.cpp",
- MAME_DIR .. "src/devices/sound/2610intf.h",
MAME_DIR .. "src/devices/sound/ay8910.cpp",
MAME_DIR .. "src/devices/sound/ay8910.h",
- MAME_DIR .. "src/devices/sound/fm.cpp",
- MAME_DIR .. "src/devices/sound/fm.h",
- MAME_DIR .. "src/devices/sound/ymdeltat.cpp",
- MAME_DIR .. "src/devices/sound/ymdeltat.h",
+ MAME_DIR .. "src/devices/sound/ym2610.cpp",
+ MAME_DIR .. "src/devices/sound/ym2610.h",
+ MAME_DIR .. "src/devices/sound/ymadpcm.cpp",
+ MAME_DIR .. "src/devices/sound/ymadpcm.h",
+ MAME_DIR .. "src/devices/sound/ymfm.cpp",
+ MAME_DIR .. "src/devices/sound/ymfm.h",
}
--end
--if (SOUNDS["YM2612"]~=null or SOUNDS["YM3438"]~=null) then
files {
- MAME_DIR .. "src/devices/sound/2612intf.cpp",
- MAME_DIR .. "src/devices/sound/2612intf.h",
- MAME_DIR .. "src/devices/sound/ay8910.cpp",
- MAME_DIR .. "src/devices/sound/ay8910.h",
- MAME_DIR .. "src/devices/sound/fm2612.cpp",
+ MAME_DIR .. "src/devices/sound/ym2612.cpp",
+ MAME_DIR .. "src/devices/sound/ym2612.h",
+ MAME_DIR .. "src/devices/sound/ymfm.cpp",
+ MAME_DIR .. "src/devices/sound/ymfm.h",
}
--end
end
@@ -1536,6 +1537,18 @@ if (SOUNDS["SWP30"]~=null) then
end
---------------------------------------------------
+--
+--@src/devices/sound/xt446.h,SOUNDS["XT446"] = true
+---------------------------------------------------
+
+if (SOUNDS["XT446"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/xt446.cpp",
+ MAME_DIR .. "src/devices/sound/xt446.h",
+ }
+end
+
+---------------------------------------------------
-- Roland sample players
--@src/devices/sound/rolandpcm.h,SOUNDS["ROLANDPCM"] = true
---------------------------------------------------