misc/compucranes.cpp: Dumped and added a new crane on V7 PCB [jordigahan] (#11242)

* misc/compucranes.cpp: Add a new V7 dump

New NOT_WORKING machine
--------------------------------
Master Crane (set 2) [jordigahan]

* Rename existing set 2 as set 3
This commit is contained in:
ClawGrip 2023-05-18 17:41:40 +02:00 committed by GitHub
parent 136538f624
commit afae86e180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 2 deletions

View File

@ -28645,6 +28645,7 @@ comebaby // (c) 2000 ExPotato
@source:misc/compucranes.cpp
mastcrane // (c) 199? Compumatic
mastcranea // (c) 199? Compumatic
mastcraneb // (c) 199? Compumatic
@source:misc/coolpool.cpp
9ballsht // (c) 1993 E-Scape EnterMedia + "marketed by Bundra Games"

View File

@ -81,14 +81,23 @@ void compucranes_state::ganchonew(machine_config &config)
// "GANCHONEW V8" PCB with ATX PSU connector
ROM_START(mastcrane)
ROM_REGION(0x80000, "maincpu", 0)
ROM_LOAD("v8.ic3", 0x00000, 0x20000, CRC(c47d11ad) SHA1(b0e784b7f68492f2872c06674f92d582def9cd26)) // Found the same ROM on V7 and V8 PCBs
ROM_LOAD("v8.ic3", 0x00000, 0x20000, CRC(c47d11ad) SHA1(b0e784b7f68492f2872c06674f92d582def9cd26))
ROM_REGION(0x00117, "pld", 0)
ROM_LOAD("gal16v8.ic4", 0x00000, 0x00117, CRC(4d665a06) SHA1(504f0107482f636cd216579e982c6162c0b120a7)) // Verified to be the same on all known PCB revisions
ROM_END
// "GANCHONEW V2" PCB with AT PSU connector
// "GANCHONEW V7" PCB with AT PSU connector
ROM_START(mastcranea)
ROM_REGION(0x80000, "maincpu", 0)
ROM_LOAD("v7.ic3", 0x00000, 0x20000, CRC(c3a5a2fe) SHA1(1f89508420b8eb829081bdee17b3248030063d20))
ROM_REGION(0x00117, "pld", 0)
ROM_LOAD("atf16v8.ic4", 0x00000, 0x00117, CRC(4d665a06) SHA1(504f0107482f636cd216579e982c6162c0b120a7)) // Verified to be the same on all known PCB revisions
ROM_END
// "GANCHONEW V2" PCB with AT PSU connector
ROM_START(mastcraneb)
ROM_REGION(0x80000, "maincpu", 0)
ROM_LOAD("505.ic3", 0x00000, 0x20000, CRC(3dbb83f1) SHA1(3536762937332add0ca942283cc22ff301884a4a))
@ -101,3 +110,4 @@ ROM_END
// YEAR NAME PARENT MACHINE INPUT CLASS INIT ROT COMPANY FULLNAME FLAGS
GAME( 199?, mastcrane, 0, ganchonew, ganchonew, compucranes_state, empty_init, ROT0, "Compumatic", "Master Crane (set 1)", MACHINE_IS_SKELETON_MECHANICAL )
GAME( 199?, mastcranea, mastcrane, ganchonew, ganchonew, compucranes_state, empty_init, ROT0, "Compumatic", "Master Crane (set 2)", MACHINE_IS_SKELETON_MECHANICAL )
GAME( 199?, mastcraneb, mastcrane, ganchonew, ganchonew, compucranes_state, empty_init, ROT0, "Compumatic", "Master Crane (set 3)", MACHINE_IS_SKELETON_MECHANICAL )