summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author angelosa <lordkale4@gmail.com>2024-11-23 15:59:52 +0100
committer angelosa <lordkale4@gmail.com>2024-11-23 16:00:01 +0100
commit024f4305b4b24febd9c7635e4fa03cdbc9d14558 (patch)
tree7218238b3d2f219dd9565d200271b603553803ab /scripts
parente34f3fd430c1062324c3b23eca5cd612ee93e61b (diff)
isa/sb16: move mixer implementation to own ct1745 device
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/sound.lua19
1 files changed, 18 insertions, 1 deletions
diff --git a/scripts/src/sound.lua b/scripts/src/sound.lua
index 06589a4fad9..c3f2f79f586 100644
--- a/scripts/src/sound.lua
+++ b/scripts/src/sound.lua
@@ -186,7 +186,6 @@ end
---------------------------------------------------
----------------------------------------------------
-- AC97
--@src/devices/sound/pic-ac97.h,SOUNDS["AC97"] = true
---------------------------------------------------
@@ -197,6 +196,10 @@ if (SOUNDS["AC97"]~=null) then
MAME_DIR .. "src/devices/sound/pci-ac97.h",
}
end
+
+
+
+---------------------------------------------------
-- CEM 3394 analog synthesizer chip
--@src/devices/sound/cem3394.h,SOUNDS["CEM3394"] = true
---------------------------------------------------
@@ -211,6 +214,20 @@ end
---------------------------------------------------
+-- Creative Labs CT1745 SB16 Mixer
+--@src/devices/sound/ct1745.h,SOUNDS["CT1745"] = true
+---------------------------------------------------
+
+if (SOUNDS["CT1745"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/sound/ct1745.cpp",
+ MAME_DIR .. "src/devices/sound/ct1745.h",
+ }
+end
+
+
+
+---------------------------------------------------
-- Creative Labs SB0400 Audigy2 Value
--@src/devices/sound/sb0400.h,SOUNDS["SB0400"] = true
---------------------------------------------------