diff options
author | 2018-02-01 01:13:16 +1100 | |
---|---|---|
committer | 2018-02-01 01:13:16 +1100 | |
commit | 73ce78f7b4d4c1ff8ed36f6fef61fc00a2e9135e (patch) | |
tree | 7a50841459d42fee5739652092d6629870f81e3e /docs/release/scripts/src/sound.lua | |
parent | 6488544820bbf9bc96bd2f29bbc0a8b7c0b246fa (diff) |
0.193 Release filestag193
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r-- | docs/release/scripts/src/sound.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua index a4797ce9bf3..27bb7dbb826 100644 --- a/docs/release/scripts/src/sound.lua +++ b/docs/release/scripts/src/sound.lua @@ -1433,3 +1433,27 @@ if (SOUNDS["DAVE"]~=null) then MAME_DIR .. "src/devices/sound/dave.h", } end + +--------------------------------------------------- +-- Toshiba TA7630 +--@src/devices/sound/ta7630.h,SOUNDS["TA7630"] = true +--------------------------------------------------- + +if (SOUNDS["TA7630"]~=null) then + files { + MAME_DIR .. "src/devices/sound/ta7630.cpp", + MAME_DIR .. "src/devices/sound/ta7630.h", + } +end + +--------------------------------------------------- +-- Sanyo LC7535 +--@src/devices/sound/lc7535.h,SOUNDS["LC7535"] = true +--------------------------------------------------- + +if (SOUNDS["LC7535"]~=null) then + files { + MAME_DIR .. "src/devices/sound/lc7535.cpp", + MAME_DIR .. "src/devices/sound/lc7535.h", + } +end |