diff options
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua index ab05c06847c..171ad3f30cc 100644 --- a/scripts/src/sound.lua +++ b/scripts/src/sound.lua @@ -154,13 +154,13 @@ end --------------------------------------------------- -- Amiga audio hardware ---@src/devices/sound/amiga.h,SOUNDS["AMIGA"] = true +--@src/devices/machine/8364_paula.h,SOUNDS["PAULA_8364"] = true --------------------------------------------------- -if (SOUNDS["AMIGA"]~=null) then +if (SOUNDS["PAULA_8364"]~=null) then files { - MAME_DIR .. "src/devices/sound/amiga.cpp", - MAME_DIR .. "src/devices/sound/amiga.h", + MAME_DIR .. "src/devices/machine/8364_paula.cpp", + MAME_DIR .. "src/devices/machine/8364_paula.h", } end @@ -1424,3 +1424,15 @@ if (SOUNDS["MM5837"]~=null) then MAME_DIR .. "src/devices/sound/mm5837.h", } end + +--------------------------------------------------- +-- Intelligent Designs DAVE +--@src/devices/sound/dave.h,MACHINES["DAVE"] = true +--------------------------------------------------- + +if (SOUNDS["DAVE"]~=null) then + files { + MAME_DIR .. "src/devices/sound/dave.cpp", + MAME_DIR .. "src/devices/sound/dave.h", + } +end |