diff options
Diffstat (limited to 'docs/release/scripts/src/sound.lua')
-rw-r--r-- | docs/release/scripts/src/sound.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/release/scripts/src/sound.lua b/docs/release/scripts/src/sound.lua index f2d6c9b979d..cc24f2ba57f 100644 --- a/docs/release/scripts/src/sound.lua +++ b/docs/release/scripts/src/sound.lua @@ -590,6 +590,7 @@ end --------------------------------------------------- -- Namco custom sound chips --@src/devices/sound/namco.h,SOUNDS["NAMCO"] = true +--@src/devices/sound/namco_163.h,SOUNDS["NAMCO_163"] = true --@src/devices/sound/n63701x.h,SOUNDS["NAMCO_63701X"] = true --@src/devices/sound/c140.h,SOUNDS["C140"] = true --@src/devices/sound/c352.h,SOUNDS["C352"] = true @@ -602,6 +603,13 @@ if (SOUNDS["NAMCO"]~=null or SOUNDS["NAMCO_15XX"]~=null or SOUNDS["NAMCO_CUS30"] } end +if (SOUNDS["NAMCO_163"]~=null) then + files { + MAME_DIR .. "src/devices/sound/namco_163.cpp", + MAME_DIR .. "src/devices/sound/namco_163.h", + } +end + if (SOUNDS["NAMCO_63701X"]~=null) then files { MAME_DIR .. "src/devices/sound/n63701x.cpp", @@ -1500,6 +1508,18 @@ end --------------------------------------------------- -- +--@src/devices/sound/swp20.h,SOUNDS["SWP20"] = true +--------------------------------------------------- + +if (SOUNDS["SWP20"]~=null) then + files { + MAME_DIR .. "src/devices/sound/swp20.cpp", + MAME_DIR .. "src/devices/sound/swp20.h", + } +end + +--------------------------------------------------- +-- --@src/devices/sound/swp30.h,SOUNDS["SWP30"] = true --------------------------------------------------- |