From f60fd23e3e10f140aa4a63ec1cf26cffd78f422a Mon Sep 17 00:00:00 2001 From: 987123879113 <63495610+987123879113@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:56:24 +0900 Subject: namco/namcos12.cpp: Emulated games with CDXA board. (#11558) * machine/t10mmc.cpp: Added support for T10SBC_CMD_SEEK_10 command. * cpu/sh: Added SH7014 SoC. * machine/icd2061a.cpp: Emulated IC Designs 2061A programmable clock generator. * sound/lc78836m.cpp: Emulated Sanyo LC78836M audio DAC. * namco/namcos12_cdxa.cpp: Emulated Namco System 12 CDXA board. Systems promoted to working ----------------------------- Truck Kyosokyoku (Japan, TKK2/VER.A) [Windy Fairy] New working systems ----------------------------- Um Jammer Lammy NOW! (Japan, UL1/VER.A) [Phil Bennett, Eric Yockey, Windy Fairy] --- scripts/src/machine.lua | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) (limited to 'scripts/src/machine.lua') diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 9b8c615500c..5138a692fee 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1756,25 +1756,37 @@ end --------------------------------------------------- -- ---@src/devices/machine/icm7170.h,MACHINES["ICM7170"] = true +--@src/devices/machine/ibm21s850.h,MACHINES["IBM21S850"] = true --------------------------------------------------- -if (MACHINES["ICM7170"]~=null) then +if (MACHINES["IBM21S850"]~=null) then files { - MAME_DIR .. "src/devices/machine/icm7170.cpp", - MAME_DIR .. "src/devices/machine/icm7170.h", + MAME_DIR .. "src/devices/machine/ibm21s850.cpp", + MAME_DIR .. "src/devices/machine/ibm21s850.h", } end --------------------------------------------------- -- ---@src/devices/machine/ibm21s850.h,MACHINES["IBM21S850"] = true +--@src/devices/machine/icd2061a.h,MACHINES["ICD2061A"] = true --------------------------------------------------- -if (MACHINES["IBM21S850"]~=null) then +if (MACHINES["ICD2061A"]~=null) then files { - MAME_DIR .. "src/devices/machine/ibm21s850.cpp", - MAME_DIR .. "src/devices/machine/ibm21s850.h", + MAME_DIR .. "src/devices/machine/icd2061a.cpp", + MAME_DIR .. "src/devices/machine/icd2061a.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/machine/icm7170.h,MACHINES["ICM7170"] = true +--------------------------------------------------- + +if (MACHINES["ICM7170"]~=null) then + files { + MAME_DIR .. "src/devices/machine/icm7170.cpp", + MAME_DIR .. "src/devices/machine/icm7170.h", } end -- cgit v1.2.3-70-g09d2