Raiders (Century Electronics 1981) ================================== ROMSET: * CVS\cvs_raiders.zip --> Renamed to raiders.zip * The game has the same problems with sound like Superbike (CVS) * Graphics and gamplay ok * Most Wanted says: "Raiders" (1981?) -- we have a couple of dumps of this but we're not sure that any of them are complete SOURCE: cvs.c Add after ROM_START( spacefrt ): ROM_START( raiders ) /* ROMS order are 5-4-3-2-1 - Protection? */ ROM_REGION( 0x8000, REGION_CPU1, 0 ) ROM_LOAD( "raid4-5a.bin", 0x0000, 0x0400, CRC(1a92a5aa) SHA1(7f6dbbc0ac5ee2ba3efb3a9120cbee89c659b712) ) ROM_CONTINUE( 0x2000, 0x0400 ) ROM_CONTINUE( 0x4000, 0x0400 ) ROM_CONTINUE( 0x6000, 0x0400 ) ROM_LOAD( "raid4-4b.bin", 0x0400, 0x0400, CRC(da69e4b9) SHA1(8a2c4130a5db2cd7dbadb220440bb94ed4513bca) ) ROM_CONTINUE( 0x2400, 0x0400 ) ROM_CONTINUE( 0x4400, 0x0400 ) ROM_CONTINUE( 0x6400, 0x0400 ) ROM_LOAD( "raid4-3b.bin", 0x0800, 0x0400, CRC(ca794f92) SHA1(f281d88ffc6b7a84f9bcabc06eed99b8ae045eec) ) ROM_CONTINUE( 0x2800, 0x0400 ) ROM_CONTINUE( 0x4800, 0x0400 ) ROM_CONTINUE( 0x6800, 0x0400 ) ROM_LOAD( "raid4-2c.bin", 0x0c00, 0x0400, CRC(9de2c085) SHA1(be6157904afd0dc6ef8d97ec01a9557021ac8f3a) ) ROM_CONTINUE( 0x2c00, 0x0400 ) ROM_CONTINUE( 0x4c00, 0x0400 ) ROM_CONTINUE( 0x6c00, 0x0400 ) ROM_LOAD( "raid4-1a.bin", 0x1000, 0x0400, CRC(f4db83ed) SHA1(7d519dc628c93f153ccede85e3cf77c012430f38) ) ROM_CONTINUE( 0x3000, 0x0400 ) ROM_CONTINUE( 0x5000, 0x0400 ) ROM_CONTINUE( 0x7000, 0x0400 ) ROM_REGION( 0x2000, REGION_CPU2, 0 ) ROM_LOAD( "raidr1-6.bin", 0x0000, 0x0800, CRC(6f827e49) SHA1(4fb272616b60fcd468ed4074b94125e30aa46fd3) ) ROM_REGION( 0x0800, REGION_CPU3, 0 ) ROM_LOAD( "5b.bin", 0x0000, 0x0800, CRC(f055a624) SHA1(5dfe89d7271092e665cdd5cd59d15a2b70f92f43) ) ROM_REGION( 0x0800, REGION_SOUND1, 0 ) ROM_LOAD( "raidr1-8.bin", 0x0000, 0x0800, CRC(b6b90d2e) SHA1(a966fa208b72aec358b7fb277e603e47b6984aa7) ) ROM_REGION( 0x1800, REGION_GFX1, ROMREGION_DISPOSE ) ROM_LOAD( "raid4-11.bin", 0x0000, 0x0800, CRC(5eb7143b) SHA1(a19e803c15593b37ae2e61789f6e16f319620a37) ) ROM_LOAD( "raid4-10.bin", 0x0800, 0x0800, CRC(391948a4) SHA1(7e20ad4f7e5bf7ad5dcb08ba6475313e2b8b1f03) ) ROM_LOAD( "raid4-9b.bin", 0x1000, 0x0800, CRC(fecfde80) SHA1(23ea63080b8292fb00a743743cdff1a7ad0a8c6d) ) ROM_REGION( 0x0820, REGION_PROMS, 0 ) ROM_LOAD( "82s185.10h", 0x0000, 0x0800, CRC(c205bca6) SHA1(ec9bd220e75f7b067ede6139763ef8aca0fb7a29) ) ROM_LOAD( "82s123.10k", 0x0800, 0x0020, CRC(b5221cec) SHA1(71d9830b33b1a8140b0fe1a2ba8024ba8e6e48e0) ) ROM_END Add after static DRIVER_INIT( hero ): static DRIVER_INIT( raiders ) { /* The board swapped bit 6 with 1 */ data8_t *rom=memory_region(REGION_CPU1); int i; for (i = 0;i < 0x7400;i++) rom[i] = BITSWAP8(rom[i],7,1,5,4,3,2,6,0); /* Patch out protection */ memory_region(REGION_CPU1)[0x010a] = 0xc0; memory_region(REGION_CPU1)[0x010b] = 0xc0; memory_region(REGION_CPU1)[0x010c] = 0xc0; } Add after GAMEX( 1981, spacefrt...): GAMEX( 1981, raiders, cvs, cvs, cvs, raiders, ROT90, "Century Electronics", "Raiders", GAME_IMPERFECT_SOUND | GAME_NO_COCKTAIL ) SOURCE: driver.c Add after DRIVER( spacefrt ) DRIVER( raiders ) /* (c) 1981 Century */ (c) 2004 M.A.S.H.