summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/machine.lua11
-rw-r--r--scripts/src/sound.lua14
2 files changed, 25 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 5ca9f9d977d..d38de5d4293 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -5354,3 +5354,14 @@ if (MACHINES["UPD7261"]~=null) then
MAME_DIR .. "src/devices/machine/upd7261.h",
}
end
+
+---------------------------------------------------
+--
+--@src/devices/machine/cat702.h,MACHINES["CAT702"] = true
+---------------------------------------------------
+if (MACHINES["CAT702"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/cat702.cpp",
+ MAME_DIR .. "src/devices/machine/cat702.h",
+ }
+end
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua
index b53cd0b10a8..ccbab43419c 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -551,6 +551,20 @@ end
---------------------------------------------------
+-- Micronas DAC 3550A Stereo Audio DAC
+--@src/devices/sound/dac3350a.h,SOUNDS["DAC3350A"] = true
+---------------------------------------------------
+
+if (SOUNDS["DAC3350A"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/dac3350a.cpp",
+ MAME_DIR .. "src/devices/sound/dac3350a.h",
+ }
+end
+
+
+
+---------------------------------------------------
-- MEA8000 Voice Synthesizer
--@src/devices/sound/mea8000.h,SOUNDS["MEA8000"] = true
---------------------------------------------------