diff options
author | 2020-03-26 12:54:28 +1100 | |
---|---|---|
committer | 2020-03-26 12:54:28 +1100 | |
commit | 75e0ed7918a4656755a08bdb7025af579615e033 (patch) | |
tree | 7e5061afb9d701862e2f27369a4019e8cd5fdb13 /docs/release/scripts/src/sound.lua | |
parent | 053c04ffc930159c538bcd77dd3255c74cdd2951 (diff) |
0.220 Release filestag220
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r-- | docs/release/scripts/src/sound.lua | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua index 752b8af30e6..dc0a1a93f07 100644 --- a/docs/release/scripts/src/sound.lua +++ b/docs/release/scripts/src/sound.lua @@ -1436,7 +1436,7 @@ end --------------------------------------------------- -- MM5837 Noise Generator ---@src/devices/sound/mm5837.h,MACHINES["MM5837"] = true +--@src/devices/sound/mm5837.h,SOUNDS["MM5837"] = true --------------------------------------------------- if (SOUNDS["MM5837"]~=null) then @@ -1541,3 +1541,39 @@ if (SOUNDS["SWP30"]~=null) then MAME_DIR .. "src/devices/sound/swp30.h", } end + +--------------------------------------------------- +-- Roland sample players +--@src/devices/sound/rolandpcm.h,SOUNDS["ROLANDPCM"] = true +--------------------------------------------------- + +if (SOUNDS["ROLANDPCM"]~=null) then + files { + MAME_DIR .. "src/devices/sound/rolandpcm.cpp", + MAME_DIR .. "src/devices/sound/rolandpcm.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/sound/vgm_visualizer.h,SOUNDS["VGMVIZ"] = true +--------------------------------------------------- + +if (SOUNDS["VGMVIZ"]~=null) then + files { + MAME_DIR .. "src/devices/sound/vgm_visualizer.cpp", + MAME_DIR .. "src/devices/sound/vgm_visualizer.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/sound/ks0164.h,SOUNDS["KS0164"] = true +--------------------------------------------------- + +if (SOUNDS["KS0164"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ks0164.cpp", + MAME_DIR .. "src/devices/sound/ks0164.h", + } +end |