From a13edc5d09d00275826044be140df0b3e86b2194 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 15 Feb 2023 16:53:35 +0100 Subject: New working clones ------------------ Swords of Fury (LG-2) Germany [Matt's Basement Arcade, PinMAME] --- src/mame/mame.lst | 1 + src/mame/pinball/s11b.cpp | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 921f5b4fbb2..370cc2a5eab 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -36325,6 +36325,7 @@ polic_l4 // spstn_l5 // swrds_l1 // swrds_l2 // +swrds_lg2 // taxi_l3 // taxi_l4 // taxi_lg1 // diff --git a/src/mame/pinball/s11b.cpp b/src/mame/pinball/s11b.cpp index 28bbd42f35b..c5e0d05179e 100644 --- a/src/mame/pinball/s11b.cpp +++ b/src/mame/pinball/s11b.cpp @@ -1387,6 +1387,24 @@ ROM_START(swrds_l2) ROM_RELOAD(0x38000,0x8000) ROM_END +ROM_START(swrds_lg2) + ROM_REGION(0x10000, "maincpu", 0) + ROM_LOAD("swrd_u26.l1", 0x4000, 0x4000, CRC(e7a54874) SHA1(9f3486a0eed32ab0919805bed771ffd214a78967)) + ROM_LOAD("swrd_u27g.l2", 0x8000, 0x8000, CRC(ef7194d4) SHA1(45b4fc316b603921fdafaf2638a46a94e6efc190)) + ROM_REGION(0x10000, "audiocpu", ROMREGION_ERASEFF) + ROM_LOAD("swrd_u21.l1", 0x8000, 0x8000, CRC(ee8b0a64) SHA1(c2c52059a9a5f7c0abcfdd76cfc6d5b5451f7d1e)) + ROM_LOAD("swrd_u22.l1", 0x0000, 0x8000, CRC(73dcdbb0) SHA1(66f5b3804442a1742b6fb3cccf539c4df956b3f2)) + ROM_REGION(0x80000, "bg:cpu", ROMREGION_ERASEFF) + ROM_LOAD("swrd_u4.l1", 0x00000, 0x8000, CRC(272b509c) SHA1(756d3783f664ca1c41dd1d12032330b74c3f89ea)) + ROM_RELOAD(0x08000,0x8000) + ROM_RELOAD(0x10000,0x8000) + ROM_RELOAD(0x18000,0x8000) + ROM_LOAD("swrd_u19.l1", 0x20000, 0x8000, CRC(a22f84fa) SHA1(1731e86e85cca2d283512d5048c787df3970c9c5)) + ROM_RELOAD(0x28000,0x8000) + ROM_RELOAD(0x30000,0x8000) + ROM_RELOAD(0x38000,0x8000) +ROM_END + ROM_START(swrds_l1) ROM_REGION(0x10000, "maincpu", 0) ROM_LOAD("swrd_u26.l1", 0x4000, 0x4000, CRC(e7a54874) SHA1(9f3486a0eed32ab0919805bed771ffd214a78967)) @@ -1642,6 +1660,7 @@ GAME(1989, polic_l2, polic_l4, s11b, s11b, s11b_state, init_s11bi7, R GAME(1989, polic_g4, polic_l4, s11b, s11b, s11b_state, init_s11bi7, ROT0, "Williams", "Police Force (LG-4) Germany", MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) GAME(1988, spstn_l5, 0, s11b, s11b, s11b_state, init_s11bnn, ROT0, "Williams", "Space Station (L-5)", MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) GAME(1988, swrds_l2, 0, s11b, s11b, s11b_state, init_s11bn7, ROT0, "Williams", "Swords of Fury (L-2)", MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) +GAME(1988, swrds_lg2, swrds_l2, s11b, s11b, s11b_state, init_s11bn7, ROT0, "Williams", "Swords of Fury (LG-2) Germany", MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) GAME(1988, swrds_l1, swrds_l2, s11b, s11b, s11b_state, init_s11bn7, ROT0, "Williams", "Swords of Fury (L-1)", MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) GAME(1988, taxi_l4, 0, s11b, s11b, s11b_state, init_s11bi7, ROT0, "Williams", "Taxi (Lola) (L-4)", MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) GAME(1988, taxi_l3, taxi_l4, s11b, s11b, s11b_state, init_s11bi7, ROT0, "Williams", "Taxi (Marilyn) (L-3)", MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) -- cgit v1.2.3