diff options
author | 2023-09-22 13:56:24 +0900 | |
---|---|---|
committer | 2023-09-22 14:56:24 +1000 | |
commit | f60fd23e3e10f140aa4a63ec1cf26cffd78f422a (patch) | |
tree | e203d59afaa7da25cf63748eac9501ed65108216 /scripts/src/machine.lua | |
parent | 85ce279c637a21d9a62627392d1636ece7ec360d (diff) |
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]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 28 |
1 files changed, 20 insertions, 8 deletions
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 |