From f8c9b0fdde0d346d3d3dade95369cbc4784325e6 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Mon, 29 Oct 2018 18:41:10 +0100 Subject: new working clone ----------------------------------- Centipede (bootleg, set 2) [Joe Magiera, The Dumping Union] --- src/mame/drivers/centiped.cpp | 18 +++++++++++++++++- src/mame/mame.lst | 1 + 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/mame/drivers/centiped.cpp b/src/mame/drivers/centiped.cpp index 51c9ffc5196..e72153a50a0 100644 --- a/src/mame/drivers/centiped.cpp +++ b/src/mame/drivers/centiped.cpp @@ -2136,6 +2136,21 @@ ROM_START( centipdb ) ROM_LOAD( "136001-213.p4", 0x0000, 0x0100, CRC(6fa3093a) SHA1(2b7aeca74c1ae4156bf1878453a047330f96f0a8) ) ROM_END +ROM_START( centipdb2 ) // Single PCB with hand-written "Millipede", but is a Centipede bootleg instead + ROM_REGION( 0x10000, "maincpu", 0 ) // all 2716 + ROM_LOAD( "mp1.d1", 0x2000, 0x0800, CRC(b17b8e0b) SHA1(01944cf040cf23aeb4c50d4f2e63181e08a07310) ) + ROM_LOAD( "mp2.e1", 0x2800, 0x0800, CRC(7684398e) SHA1(eea8e05506a7af2fec55c2689e3caafc62ea524f) ) + ROM_LOAD( "mp3.h1", 0x3000, 0x0800, CRC(74580fe4) SHA1(35b8a8675e4e020e234e51c3e4bd4ee5c24b79d2) ) + ROM_LOAD( "mp4.j1", 0x3800, 0x0800, CRC(849b1614) SHA1(9060e39ec1d5c66e26c8d28a86818bcc1801c610) ) + ROM_LOAD( "mp5.k1", 0x6000, 0x0800, CRC(9d3ad0e5) SHA1(ad7520b3c95d729bfd022553817f868485e9a191) ) + + ROM_REGION( 0x1000, "gfx1", 0 ) // all 2716 + ROM_LOAD( "mp6.f7", 0x0000, 0x0800, CRC(880acfb9) SHA1(6c862352c329776f2f9974a0df9dbe41f9dbc361) ) + ROM_LOAD( "mp7.j7", 0x0800, 0x0800, CRC(b1397029) SHA1(974c03d29aeca672fffa4dfc00a06be6a851aacb) ) + + ROM_REGION( 0x0100, "proms", 0 ) + ROM_LOAD( "82s129.p4", 0x0000, 0x0100, CRC(6fa3093a) SHA1(2b7aeca74c1ae4156bf1878453a047330f96f0a8) ) +ROM_END ROM_START( millpac ) ROM_REGION( 0x10000, "maincpu", 0 ) @@ -2328,7 +2343,8 @@ GAME( 1980, centiped3, centiped, centiped, centiped, centiped_state, empty_ini GAME( 1980, centiped2, centiped, centiped, centiped, centiped_state, empty_init, ROT270, "Atari", "Centipede (revision 2)", MACHINE_SUPPORTS_SAVE ) GAME( 1980, centiped1, centiped, centiped, centiped, centiped_state, empty_init, ROT270, "Atari", "Centipede (revision 1)", MACHINE_SUPPORTS_SAVE ) GAME( 1980, centipedj, centiped, centipedj, centipedj, centiped_state, empty_init, ROT270, "Atari", "Centipede (Japan, revision 3)", MACHINE_SUPPORTS_SAVE ) -GAME( 1980, centipdb, centiped, centipdb, centiped, centiped_state, empty_init, ROT270, "bootleg", "Centipede (bootleg)", MACHINE_SUPPORTS_SAVE ) +GAME( 1980, centipdb, centiped, centipdb, centiped, centiped_state, empty_init, ROT270, "bootleg", "Centipede (bootleg, set 1)", MACHINE_SUPPORTS_SAVE ) +GAME( 1980, centipdb2, centiped, centipdb, centiped, centiped_state, empty_init, ROT270, "bootleg", "Centipede (bootleg, set 2)", MACHINE_SUPPORTS_SAVE ) GAME( 1989, centipdd, centiped, centiped, centiped, centiped_state, empty_init, ROT270, "hack (Two-Bit Score)", "Centipede Dux (hack)", MACHINE_SUPPORTS_SAVE ) GAME( 1980, caterplr, centiped, caterplr, caterplr, centiped_state, empty_init, ROT270, "bootleg (Olympia)", "Caterpillar (bootleg of Centipede)", MACHINE_SUPPORTS_SAVE ) GAME( 1980, millpac, centiped, centipdb, centiped, centiped_state, empty_init, ROT270, "bootleg? (Valadon Automation)", "Millpac (bootleg of Centipede)", MACHINE_SUPPORTS_SAVE ) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index f37857fdfbb..933e75253d2 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -9602,6 +9602,7 @@ mag_day bullsdrt // (c) 1985 Shinkai caterplr // (bootleg) centipdb // (bootleg) +centipdb2 // (bootleg) centipdd // hack by Two Bit Score centiped // 136001 (c) 1980 centiped1 // 136001 (c) 1980 -- cgit v1.2.3