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/machine.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/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 11 |
1 files changed, 11 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 |