Previous 199869 Revisions Next

r17618 Monday 3rd September, 2012 at 15:03:22 UTC by Brian Troha
new US Superman clone

taito_x.c: Corrected the rom names for the Superman sets. Added info about an alternate rom layout using a daughter card and half sized mask roms. Changed Gigandes (Japan) to Gigandes (earlier) as both sets support English / Japanese via dipswitch. But one set has a revised and corrected service mode. [Brian Troha, Dave France, The Dumping Union]

New Clone Added
-----------------------------------
Superman (US) [Dave France, The Dumping Union]
[src/mame]mame.lst
[src/mame/drivers]taito_x.c

trunk/src/mame/mame.lst
r17617r17618
20392039
20402040// Taito "X"-system games
20412041superman      // B61 (c) 1988 Taito Corporation
2042supermanu      // B61 (c) 1988 Taito Corporation
20422043supermanj      // B61 (c) 1988 Taito Corporation
20432044twinhawk      // B87 (c) 1989 Taito Corporation Japan (World)
20442045twinhawku      // B87 (c) 1989 Taito America Corporation (US)
20452046daisenpu      // B87 (c) 1989 Taito Corporation (Japan)
20462047gigandes      // (c) 1989 East Technology
2047gigandesj      // (c) 1989 East Technology
2048gigandesa      // (c) 1989 East Technology
20482049kyustrkr      // (c) 1989 East Technology
20492050ballbros      // no copyright notice
20502051
trunk/src/mame/drivers/taito_x.c
r17617r17618
224224
225225Stephh's notes (based on the game M68000 code and some tests) :
226226
2271) 'superman' and 'supermanj'
2271) 'superman', 'supermanu' and 'supermanj'
228228
229229  - Region stored at 0x07fffe.w
230230  - Sets :
231      * 'superman' : region = 0x0002
231      * 'superman'  : region = 0x0002
232      * 'supermanu' : region = 0x0001
232233      * 'supermanj' : region = 0x0000
233234  - These 2 games are 100% the same, only region differs !
234235  - Coinage relies on the region (code at 0x003b8a) :
r17617r17618
240241    but boss are far much harder when "Difficulty" Dip Swicth
241242    is set to "Easy" : put a watch on 0xf00a76.w for level 1 boss
242243    and you'll notice that MSB is set to 0x01 instead of 0x00
244  - 'supermanu' has no Notice screen or FBI logo & statement
243245
244246
2452472) 'twinhawk'
r17617r17618
271273  - Same other notes as for 'twinhawk'
272274
273275
2745) 'gigandes' and 'gigandesj'
2765) 'gigandes' and 'gigandesa'
275277
276278  - No region (not a Taito game anyway)
277279  - No notice screen
278280  - Constant bonus life at 50k, 250k then every 200k
279  - Bogus "Test Mode" in 'gigandes' (while it is correct for 'gigandesj') :
281  - Bogus "Test Mode" in 'gigandesa' (while it is correct for 'gigandes') :
280282      * screen is flipped while it shouldn't and it isn't flipped while it should
281283      * displays cabinet type instead of number of controls
282284  - DSWA bit 4 effect remains unknown but it MUST remain OFF !
r17617r17618
631633   PORT_DIPSETTING(    0x00, "5" )
632634INPUT_PORTS_END
633635
636static INPUT_PORTS_START( supermanu )
637   PORT_INCLUDE( superman )
638
639   PORT_MODIFY("DSWA")
640   TAITO_COINAGE_US_LOC(SW1)
641INPUT_PORTS_END
642
634643static INPUT_PORTS_START( supermanj )
635644   PORT_INCLUDE( superman )
636645
r17617r17618
10291038      All Z80 CPU's running at 6.000MHz (12/2)
10301039      YM2203 running at 3.000Mz (12/4)
10311040      VSync 60Hz
1041
1042NOTE: There is an alternate version that uses a daughter card to replace the 8Mbit mask roms
1043      with two 4Mbit mask roms. These roms are B61-02 through B61-05, high and low for each.
1044
10321045*/
10331046
10341047ROM_START( superman )
10351048   ROM_REGION( 0x80000, "maincpu", 0 )     /* 512k for 68000 code */
1036   ROM_LOAD16_BYTE( "a10_09.bin", 0x00000, 0x20000, CRC(640f1d58) SHA1(e768d32eae1dba39c23189996fbd5454c8627809) )
1037   ROM_LOAD16_BYTE( "a05_07.bin", 0x00001, 0x20000, CRC(fddb9953) SHA1(8b562712810a5a72f4647f1ba1314a1be2e249e7) )
1038   ROM_LOAD16_BYTE( "a08_08.bin", 0x40000, 0x20000, CRC(79fc028e) SHA1(bf42b3f84dcad8fd9085c702a78dc895cc12d670) )
1039   ROM_LOAD16_BYTE( "a03_13.bin", 0x40001, 0x20000, CRC(9f446a44) SHA1(16f7cd6438e47fdaac93a368df5c093f6ff0f1f0) )
1049   ROM_LOAD16_BYTE( "b61_09.a10", 0x00000, 0x20000, CRC(640f1d58) SHA1(e768d32eae1dba39c23189996fbd5454c8627809) )
1050   ROM_LOAD16_BYTE( "b61_07.a5",  0x00001, 0x20000, CRC(fddb9953) SHA1(8b562712810a5a72f4647f1ba1314a1be2e249e7) )
1051   ROM_LOAD16_BYTE( "b61_08.a8",  0x40000, 0x20000, CRC(79fc028e) SHA1(bf42b3f84dcad8fd9085c702a78dc895cc12d670) )
1052   ROM_LOAD16_BYTE( "b61_13.a3",  0x40001, 0x20000, CRC(9f446a44) SHA1(16f7cd6438e47fdaac93a368df5c093f6ff0f1f0) )
10401053
10411054   ROM_REGION( 0x1c000, "audiocpu", 0 )     /* 64k for Z80 code */
1042   ROM_LOAD( "d18_10.bin", 0x00000, 0x4000, CRC(6efe79e8) SHA1(7a76efaaeab71473f4b0b23a89141f203488ce1d) )
1055   ROM_LOAD( "b61_10.d18", 0x00000, 0x4000, CRC(6efe79e8) SHA1(7a76efaaeab71473f4b0b23a89141f203488ce1d) )
10431056   ROM_CONTINUE(           0x10000, 0xc000 ) /* banked stuff */
10441057
10451058   ROM_REGION( 0x200000, "gfx1", 0 )
1046   ROM_LOAD( "f01_14.bin", 0x000000, 0x80000, CRC(89368c3e) SHA1(8d227439ab321fd5d432d860544daea0e78ce588) ) /* Plane 0, 1 */
1047   ROM_LOAD( "h01_15.bin", 0x080000, 0x80000, CRC(910cc4f9) SHA1(9ecfa84123a8f9d048f0a689647e92f25af73899) )
1048   ROM_LOAD( "j01_16.bin", 0x100000, 0x80000, CRC(3622ed2f) SHA1(03f4383f6ff8b5f1e26bc6bbef2fb1855d3bb93f) ) /* Plane 2, 3 */
1049   ROM_LOAD( "k01_17.bin", 0x180000, 0x80000, CRC(c34f27e0) SHA1(07ee02c18ce29f35e8ae87d0c1ed80b726c246a6) )
1059   ROM_LOAD( "b61-14.f1", 0x000000, 0x80000, CRC(89368c3e) SHA1(8d227439ab321fd5d432d860544daea0e78ce588) ) /* Plane 0, 1 */
1060   ROM_LOAD( "b61-15.h1", 0x080000, 0x80000, CRC(910cc4f9) SHA1(9ecfa84123a8f9d048f0a689647e92f25af73899) )
1061   ROM_LOAD( "b61-16.j1", 0x100000, 0x80000, CRC(3622ed2f) SHA1(03f4383f6ff8b5f1e26bc6bbef2fb1855d3bb93f) ) /* Plane 2, 3 */
1062   ROM_LOAD( "b61-17.k1", 0x180000, 0x80000, CRC(c34f27e0) SHA1(07ee02c18ce29f35e8ae87d0c1ed80b726c246a6) )
10501063
10511064   ROM_REGION( 0x80000, "ymsnd", 0 )   /* ADPCM samples */
1052   ROM_LOAD( "e18_01.bin", 0x00000, 0x80000, CRC(3cf99786) SHA1(f6febf9bda87ca04f0a5890d0e8001c26dfa6c81) )
1065   ROM_LOAD( "b61-01.e18", 0x00000, 0x80000, CRC(3cf99786) SHA1(f6febf9bda87ca04f0a5890d0e8001c26dfa6c81) )
1066
1067   ROM_REGION( 0x10000, "cchip", 0 )     /* 64k for TC0030CMD (C-Chip protection, Z80 with embedded 64K rom + 64K RAM)  */
1068   ROM_LOAD( "b61_11.m11", 0x00000, 0x10000, NO_DUMP )
10531069ROM_END
10541070
1055ROM_START( supermanj )
1071ROM_START( supermanu ) /* No US copyright notice or FBI logo - Just a coinage difference, see notes above */
10561072   ROM_REGION( 0x80000, "maincpu", 0 )     /* 512k for 68000 code */
1057   ROM_LOAD16_BYTE( "a10_09.bin", 0x00000, 0x20000, CRC(640f1d58) SHA1(e768d32eae1dba39c23189996fbd5454c8627809) )
1058   ROM_LOAD16_BYTE( "a05_07.bin", 0x00001, 0x20000, CRC(fddb9953) SHA1(8b562712810a5a72f4647f1ba1314a1be2e249e7) )
1059   ROM_LOAD16_BYTE( "a08_08.bin", 0x40000, 0x20000, CRC(79fc028e) SHA1(bf42b3f84dcad8fd9085c702a78dc895cc12d670) )
1060   ROM_LOAD16_BYTE( "b61-06.a3",  0x40001, 0x20000, CRC(714a0b68) SHA1(b0b42c55d2404c7c193eb8cab3bd92e321947845) )
1073   ROM_LOAD16_BYTE( "b61_09.a10", 0x00000, 0x20000, CRC(640f1d58) SHA1(e768d32eae1dba39c23189996fbd5454c8627809) )
1074   ROM_LOAD16_BYTE( "b61_07.a5",  0x00001, 0x20000, CRC(fddb9953) SHA1(8b562712810a5a72f4647f1ba1314a1be2e249e7) )
1075   ROM_LOAD16_BYTE( "b61_08.a8",  0x40000, 0x20000, CRC(79fc028e) SHA1(bf42b3f84dcad8fd9085c702a78dc895cc12d670) )
1076   ROM_LOAD16_BYTE( "b61_12.a3",  0x40001, 0x20000, CRC(064d3bfe) SHA1(75abf924a6e44203169d2fa15852caa0bf57db30) )
10611077
10621078   ROM_REGION( 0x1c000, "audiocpu", 0 )     /* 64k for Z80 code */
1063   ROM_LOAD( "d18_10.bin", 0x00000, 0x4000, CRC(6efe79e8) SHA1(7a76efaaeab71473f4b0b23a89141f203488ce1d) )
1079   ROM_LOAD( "b61_10.d18", 0x00000, 0x4000, CRC(6efe79e8) SHA1(7a76efaaeab71473f4b0b23a89141f203488ce1d) )
10641080   ROM_CONTINUE(           0x10000, 0xc000 ) /* banked stuff */
10651081
10661082   ROM_REGION( 0x200000, "gfx1", 0 )
1067   ROM_LOAD( "f01_14.bin", 0x000000, 0x80000, CRC(89368c3e) SHA1(8d227439ab321fd5d432d860544daea0e78ce588) ) /* Plane 0, 1 */
1068   ROM_LOAD( "h01_15.bin", 0x080000, 0x80000, CRC(910cc4f9) SHA1(9ecfa84123a8f9d048f0a689647e92f25af73899) )
1069   ROM_LOAD( "j01_16.bin", 0x100000, 0x80000, CRC(3622ed2f) SHA1(03f4383f6ff8b5f1e26bc6bbef2fb1855d3bb93f) ) /* Plane 2, 3 */
1070   ROM_LOAD( "k01_17.bin", 0x180000, 0x80000, CRC(c34f27e0) SHA1(07ee02c18ce29f35e8ae87d0c1ed80b726c246a6) )
1083   ROM_LOAD( "b61-14.f1", 0x000000, 0x80000, CRC(89368c3e) SHA1(8d227439ab321fd5d432d860544daea0e78ce588) ) /* Plane 0, 1 */
1084   ROM_LOAD( "b61-15.h1", 0x080000, 0x80000, CRC(910cc4f9) SHA1(9ecfa84123a8f9d048f0a689647e92f25af73899) )
1085   ROM_LOAD( "b61-16.j1", 0x100000, 0x80000, CRC(3622ed2f) SHA1(03f4383f6ff8b5f1e26bc6bbef2fb1855d3bb93f) ) /* Plane 2, 3 */
1086   ROM_LOAD( "b61-17.k1", 0x180000, 0x80000, CRC(c34f27e0) SHA1(07ee02c18ce29f35e8ae87d0c1ed80b726c246a6) )
10711087
10721088   ROM_REGION( 0x80000, "ymsnd", 0 )   /* ADPCM samples */
1073   ROM_LOAD( "e18_01.bin", 0x00000, 0x80000, CRC(3cf99786) SHA1(f6febf9bda87ca04f0a5890d0e8001c26dfa6c81) )
1089   ROM_LOAD( "b61-01.e18", 0x00000, 0x80000, CRC(3cf99786) SHA1(f6febf9bda87ca04f0a5890d0e8001c26dfa6c81) )
1090
1091   ROM_REGION( 0x10000, "cchip", 0 )     /* 64k for TC0030CMD (C-Chip protection, Z80 with embedded 64K rom + 64K RAM)  */
1092   ROM_LOAD( "b61_11.m11", 0x00000, 0x10000, NO_DUMP )
10741093ROM_END
10751094
1095ROM_START( supermanj ) /* Shows a Japan copyright notice */
1096   ROM_REGION( 0x80000, "maincpu", 0 )     /* 512k for 68000 code */
1097   ROM_LOAD16_BYTE( "b61_09.a10", 0x00000, 0x20000, CRC(640f1d58) SHA1(e768d32eae1dba39c23189996fbd5454c8627809) )
1098   ROM_LOAD16_BYTE( "b61_07.a5",  0x00001, 0x20000, CRC(fddb9953) SHA1(8b562712810a5a72f4647f1ba1314a1be2e249e7) )
1099   ROM_LOAD16_BYTE( "b61_08.a8",  0x40000, 0x20000, CRC(79fc028e) SHA1(bf42b3f84dcad8fd9085c702a78dc895cc12d670) )
1100   ROM_LOAD16_BYTE( "b61_06.a3",  0x40001, 0x20000, CRC(714a0b68) SHA1(b0b42c55d2404c7c193eb8cab3bd92e321947845) )
1101
1102   ROM_REGION( 0x1c000, "audiocpu", 0 )     /* 64k for Z80 code */
1103   ROM_LOAD( "b61_10.d18", 0x00000, 0x4000, CRC(6efe79e8) SHA1(7a76efaaeab71473f4b0b23a89141f203488ce1d) )
1104   ROM_CONTINUE(           0x10000, 0xc000 ) /* banked stuff */
1105
1106   ROM_REGION( 0x200000, "gfx1", 0 )
1107   ROM_LOAD( "b61-14.f1", 0x000000, 0x80000, CRC(89368c3e) SHA1(8d227439ab321fd5d432d860544daea0e78ce588) ) /* Plane 0, 1 */
1108   ROM_LOAD( "b61-15.h1", 0x080000, 0x80000, CRC(910cc4f9) SHA1(9ecfa84123a8f9d048f0a689647e92f25af73899) )
1109   ROM_LOAD( "b61-16.j1", 0x100000, 0x80000, CRC(3622ed2f) SHA1(03f4383f6ff8b5f1e26bc6bbef2fb1855d3bb93f) ) /* Plane 2, 3 */
1110   ROM_LOAD( "b61-17.k1", 0x180000, 0x80000, CRC(c34f27e0) SHA1(07ee02c18ce29f35e8ae87d0c1ed80b726c246a6) )
1111
1112   ROM_REGION( 0x80000, "ymsnd", 0 )   /* ADPCM samples */
1113   ROM_LOAD( "b61-01.e18", 0x00000, 0x80000, CRC(3cf99786) SHA1(f6febf9bda87ca04f0a5890d0e8001c26dfa6c81) )
1114
1115   ROM_REGION( 0x10000, "cchip", 0 )     /* 64k for TC0030CMD (C-Chip protection, Z80 with embedded 64K rom + 64K RAM)  */
1116   ROM_LOAD( "b61_11.m11", 0x00000, 0x10000, NO_DUMP )
1117ROM_END
1118
10761119/*
10771120Twin Hawk
10781121Taito, 1988
r17617r17618
11331176
11341177ROM_START( gigandes )
11351178   ROM_REGION( 0x80000, "maincpu", 0 )     /* 512k for 68000 code */
1136   ROM_LOAD16_BYTE( "1.10a",      0x00000, 0x20000, CRC(290c50e0) SHA1(ac8008619891a5b54ba2069e4e18836976532c99) )
1137   ROM_LOAD16_BYTE( "3.5a",       0x00001, 0x20000, CRC(9cef82af) SHA1(6dad850de699d40dfba54bde6baca75bb0059c83) )
1179   ROM_LOAD16_BYTE( "east_1.10a", 0x00000, 0x20000, CRC(ae74e4e5) SHA1(1CAC0A0E591B63142D8D249C67F803256FB28C2A) ) /* 'fixed' test mode, see notes above */
1180   ROM_LOAD16_BYTE( "east_3.5a",  0x00001, 0x20000, CRC(8bcf2116) SHA1(9255D7E0AB568AD7A894421D3260FA80B8A0A5D0) ) /* 'fixed' test mode, see notes above */
11381181   ROM_LOAD16_BYTE( "east_2.8a",  0x40000, 0x20000, CRC(dd94b4d0) SHA1(2efff9fd51b28fd1fb46d16b359f0991af91054e) )
11391182   ROM_LOAD16_BYTE( "east_4.3a",  0x40001, 0x20000, CRC(a647310a) SHA1(49db488a36f6c74729825bdf0214bcd30773eaf4) )
11401183
r17617r17618
11481191   ROM_LOAD( "east_9.3j", 0x100000, 0x80000, CRC(5c5e6898) SHA1(f348ac752a571902c55f36e21aa3fb9ef97528e3) ) /* Plane 2, 3 */
11491192   ROM_LOAD( "east_6.3k", 0x180000, 0x80000, CRC(52db30e9) SHA1(0b6d73f2c6e6c1ad5fcb2a9edf50069cd0691483) )
11501193
1151   ROM_REGION( 0x80000, "ymsnd.deltat", 0 )      /* Delta-T samples */
1194   ROM_REGION( 0x80000, "ymsnd.deltat", 0 )   /* Delta-T samples */
11521195   ROM_LOAD( "east-11.16f", 0x00000, 0x80000, CRC(92111f96) SHA1(e781f24761b7a923388f4cda64c7b31388fd64c5) )
11531196
11541197   ROM_REGION( 0x80000, "ymsnd", 0 )   /* ADPCM samples */
11551198   ROM_LOAD( "east-10.16e", 0x00000, 0x80000, CRC(ca0ac419) SHA1(b29f30a8ff1286c65b741353b6551918a45bcafe) )
11561199ROM_END
11571200
1158ROM_START( gigandesj )
1201ROM_START( gigandesa )
11591202   ROM_REGION( 0x80000, "maincpu", 0 )     /* 512k for 68000 code */
1160   ROM_LOAD16_BYTE( "east_1.10a", 0x00000, 0x20000, CRC(ae74e4e5) SHA1(1CAC0A0E591B63142D8D249C67F803256FB28C2A) )
1161   ROM_LOAD16_BYTE( "east_3.5a",  0x00001, 0x20000, CRC(8bcf2116) SHA1(9255D7E0AB568AD7A894421D3260FA80B8A0A5D0) )
1203   ROM_LOAD16_BYTE( "east-1.10a", 0x00000, 0x20000, CRC(290c50e0) SHA1(ac8008619891a5b54ba2069e4e18836976532c99) ) /* 'buggy' test mode, see notes above */
1204   ROM_LOAD16_BYTE( "east-3.5a",  0x00001, 0x20000, CRC(9cef82af) SHA1(6dad850de699d40dfba54bde6baca75bb0059c83) ) /* 'buggy' test mode, see notes above */
11621205   ROM_LOAD16_BYTE( "east_2.8a",  0x40000, 0x20000, CRC(dd94b4d0) SHA1(2efff9fd51b28fd1fb46d16b359f0991af91054e) )
11631206   ROM_LOAD16_BYTE( "east_4.3a",  0x40001, 0x20000, CRC(a647310a) SHA1(49db488a36f6c74729825bdf0214bcd30773eaf4) )
11641207
r17617r17618
11721215   ROM_LOAD( "east_9.3j", 0x100000, 0x80000, CRC(5c5e6898) SHA1(f348ac752a571902c55f36e21aa3fb9ef97528e3) ) /* Plane 2, 3 */
11731216   ROM_LOAD( "east_6.3k", 0x180000, 0x80000, CRC(52db30e9) SHA1(0b6d73f2c6e6c1ad5fcb2a9edf50069cd0691483) )
11741217
1175   ROM_REGION( 0x80000, "ymsnd.deltat", 0 )   /* Delta-T samples */
1218   ROM_REGION( 0x80000, "ymsnd.deltat", 0 )      /* Delta-T samples */
11761219   ROM_LOAD( "east-11.16f", 0x00000, 0x80000, CRC(92111f96) SHA1(e781f24761b7a923388f4cda64c7b31388fd64c5) )
11771220
11781221   ROM_REGION( 0x80000, "ymsnd", 0 )   /* ADPCM samples */
r17617r17618
12301273}
12311274
12321275
1233GAME( 1988, superman,  0,        superman, superman, driver_device,  0,        ROT0,   "Taito Corporation", "Superman", 0 )
1234GAME( 1988, supermanj, superman, superman, supermanj, driver_device, 0,        ROT0,   "Taito Corporation", "Superman (Japan)", 0 )
1235GAME( 1989, twinhawk,  0,        daisenpu, twinhawk, driver_device,  0,        ROT270, "Taito Corporation Japan", "Twin Hawk (World)", 0 )
1276GAME( 1988, superman,  0,        superman, superman,  driver_device, 0,        ROT0,   "Taito Corporation",         "Superman (World)", 0 )
1277GAME( 1988, supermanu, superman, superman, supermanu, driver_device, 0,        ROT0,   "Taito Corporation",         "Superman (US)", 0 )
1278GAME( 1988, supermanj, superman, superman, supermanj, driver_device, 0,        ROT0,   "Taito Corporation",         "Superman (Japan)", 0 )
1279GAME( 1989, twinhawk,  0,        daisenpu, twinhawk,  driver_device, 0,        ROT270, "Taito Corporation Japan",   "Twin Hawk (World)", 0 )
12361280GAME( 1989, twinhawku, twinhawk, daisenpu, twinhawku, driver_device, 0,        ROT270, "Taito America Corporation", "Twin Hawk (US)", 0 )
1237GAME( 1989, daisenpu,  twinhawk, daisenpu, daisenpu, driver_device,  0,        ROT270, "Taito Corporation", "Daisenpu (Japan)", 0 )
1238GAME( 1989, gigandes,  0,        gigandes, gigandes, driver_device,  0,        ROT0,   "East Technology", "Gigandes", 0 )
1239GAME( 1989, gigandesj, gigandes, gigandes, gigandes, driver_device,  0,        ROT0,   "East Technology", "Gigandes (Japan)", 0 )
1240GAME( 1989, kyustrkr,  0,        ballbros, kyustrkr, taitox_state,  kyustrkr, ROT180, "East Technology", "Last Striker / Kyuukyoku no Striker", 0 )
1241GAME( 1992, ballbros,  0,        ballbros, ballbros, driver_device,  0,        ROT0,   "East Technology", "Balloon Brothers", 0 )
1281GAME( 1989, daisenpu,  twinhawk, daisenpu, daisenpu,  driver_device, 0,        ROT270, "Taito Corporation",         "Daisenpu (Japan)", 0 )
1282GAME( 1989, gigandes,  0,        gigandes, gigandes,  driver_device, 0,        ROT0,   "East Technology",           "Gigandes", 0 )
1283GAME( 1989, gigandesa, gigandes, gigandes, gigandes,  driver_device, 0,        ROT0,   "East Technology",           "Gigandes (earlier)", 0 )
1284GAME( 1989, kyustrkr,  0,        ballbros, kyustrkr,  taitox_state,  kyustrkr, ROT180, "East Technology",           "Last Striker / Kyuukyoku no Striker", 0 )
1285GAME( 1992, ballbros,  0,        ballbros, ballbros,  driver_device, 0,        ROT0,   "East Technology",           "Balloon Brothers", 0 )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team