diff options
author | 2024-11-23 15:59:52 +0100 | |
---|---|---|
committer | 2024-11-23 16:00:01 +0100 | |
commit | 024f4305b4b24febd9c7635e4fa03cdbc9d14558 (patch) | |
tree | 7218238b3d2f219dd9565d200271b603553803ab /scripts/src/sound.lua | |
parent | e34f3fd430c1062324c3b23eca5cd612ee93e61b (diff) |
isa/sb16: move mixer implementation to own ct1745 device
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 19 |
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 --------------------------------------------------- |