diff options
author | 2024-04-17 03:28:27 +0900 | |
---|---|---|
committer | 2024-04-17 04:28:27 +1000 | |
commit | 55212dab727b8c7c7453147fe55b45fe1ebcf858 (patch) | |
tree | b2a6ea3220f3065725123d191d66a9823503bb4a /scripts/src/sound.lua | |
parent | 75818fcbd35e2a0cf0d7e1bf48ddacf3b8451980 (diff) |
misc/xtom3d.cpp: Added PIU10 ISA PCB for Pump It Up. (#12237)
* misc/xtom3d_piu10.cpp: Added PIU10 card device (CAT702, DAC3350A, MAS3507D, Flash).
* sound/dac3350a: Added Micronas DAC 3350A device.
* sound/mas3507d.cpp: Mix sample internally before playing.
* machine/cat702.cpp: Added CAT702 variant with different interface logicfor PIU10.
* machine/intelfsh.cpp: Add Macronix 29F1610MC device.
Diffstat (limited to 'scripts/src/sound.lua')
-rw-r--r-- | scripts/src/sound.lua | 14 |
1 files changed, 14 insertions, 0 deletions
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 --------------------------------------------------- |