diff options
author | 2018-12-29 09:57:29 +0900 | |
---|---|---|
committer | 2018-12-29 09:57:29 +0900 | |
commit | 6a96ec51913434e1edd46d6e49ece928a882eb18 (patch) | |
tree | b3e656c7db7f6e4bd3e18a54d4cd5a511151dffd /scripts/src/sound.lua | |
parent | 569b2cc9cfe2326e7e06fea4ff1e03ad59398c06 (diff) | |
parent | a67dd2df3cbd9dbdc907e78880138a6d83875f51 (diff) |
Merge branch 'master' into ymf278_envelope
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index f8e7f0f20a1..f2d6c9b979d 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -382,6 +382,20 @@ end --------------------------------------------------- +-- Hudsonsoft HuC6230 SoundBox +--@src/devices/sound/huc6230.h,SOUNDS["HUC6230"] = true +--------------------------------------------------- + +if (SOUNDS["HUC6230"]~=null) then + files { + MAME_DIR .. "src/devices/sound/huc6230.cpp", + MAME_DIR .. "src/devices/sound/huc6230.h", + } +end + + + +--------------------------------------------------- -- Hudsonsoft C6280 sound chip --@src/devices/sound/c6280.h,SOUNDS["C6280"] = true --------------------------------------------------- @@ -1483,3 +1497,15 @@ if (SOUNDS["IOPSPU"]~=null) then MAME_DIR .. "src/devices/sound/iopspu.h", } end + +--------------------------------------------------- +-- +--@src/devices/sound/swp30.h,SOUNDS["SWP30"] = true +--------------------------------------------------- + +if (SOUNDS["SWP30"]~=null) then + files { + MAME_DIR .. "src/devices/sound/swp30.cpp", + MAME_DIR .. "src/devices/sound/swp30.h", + } +end |