Adds Road Runner (Midway) GAME_NOT_WORKING due to bad ROM 1E (shame)

This commit is contained in:
Zsolt Vasvari 2008-01-07 23:31:51 +00:00
parent 84a74dfcaa
commit f57292b93c
2 changed files with 40 additions and 28 deletions

View file

@ -14,6 +14,7 @@
* Boot Hill
* Checkmate
* Desert Gun
* Road Runner
* Double Play
* Laguna Racer
* Guided Missile
@ -1150,7 +1151,7 @@ MACHINE_DRIVER_END
/*************************************
*
* Desert Gun (PCB #618)
* Desert Gun / Road Runner (PCB #618)
*
*************************************/
@ -2914,13 +2915,22 @@ ROM_END
ROM_START( desertgu )
ROM_REGION( 0x10000, REGION_CPU1, 0 )
ROM_LOAD( "desertgu.h", 0x0000, 0x0800, CRC(c0030d7c) SHA1(4d0a3a59d4f8181c6e30966a6b1d19ba5b29c398) )
ROM_LOAD( "desertgu.g", 0x0800, 0x0800, CRC(1ddde10b) SHA1(8fb8e85844a8ec6c0722883013ecdd4eeaeb08c1) )
ROM_LOAD( "desertgu.f", 0x1000, 0x0800, CRC(808e46f1) SHA1(1cc4e9b0aa7e9546c133bd40d40ede6f2fbe93ba) )
ROM_LOAD( "9316.1h", 0x0000, 0x0800, CRC(c0030d7c) SHA1(4d0a3a59d4f8181c6e30966a6b1d19ba5b29c398) )
ROM_LOAD( "9316.1g", 0x0800, 0x0800, CRC(1ddde10b) SHA1(8fb8e85844a8ec6c0722883013ecdd4eeaeb08c1) )
ROM_LOAD( "9316.1f", 0x1000, 0x0800, CRC(808e46f1) SHA1(1cc4e9b0aa7e9546c133bd40d40ede6f2fbe93ba) )
ROM_LOAD( "desertgu.e", 0x1800, 0x0800, CRC(ac64dc62) SHA1(202433dfb174901bd3b91e843d9d697a8333ef9e) )
ROM_END
ROM_START( roadrunm )
ROM_REGION( 0x10000, REGION_CPU1, 0 )
ROM_LOAD( "9316.1h", 0x0000, 0x0800, CRC(c0030d7c) SHA1(4d0a3a59d4f8181c6e30966a6b1d19ba5b29c398) )
ROM_LOAD( "9316.1g", 0x0800, 0x0800, CRC(1ddde10b) SHA1(8fb8e85844a8ec6c0722883013ecdd4eeaeb08c1) )
ROM_LOAD( "9316.1f", 0x1000, 0x0800, CRC(808e46f1) SHA1(1cc4e9b0aa7e9546c133bd40d40ede6f2fbe93ba) )
ROM_LOAD( "9316.1e", 0x1800, 0x0800, BAD_DUMP CRC(d5adff14) SHA1(39e5bf5b9846073d2e909542e394244b8c31dc5a) )
ROM_END
ROM_START( dplay )
ROM_REGION( 0x10000, REGION_CPU1, 0 )
ROM_LOAD( "dplay619.h", 0x0000, 0x0800, CRC(6680669b) SHA1(49ad2333f81613c2f27231de60b415cbc254546a) )
@ -3088,6 +3098,7 @@ ROM_END
/* 612 */ GAME( 1977, boothill, 0, boothill, boothill, 0, ROT0, "Midway", "Boot Hill" , GAME_SUPPORTS_SAVE )
/* 615 */ GAME( 1977, checkmat, 0, checkmat, checkmat, 0, ROT0, "Midway", "Checkmate", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
/* 618 */ GAME( 1977, desertgu, 0, desertgu, desertgu, 0, ROT0, "Midway", "Desert Gun", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
/* 618 */ GAME( 1977, roadrunm, desertgu, desertgu, desertgu, 0, ROT0, "Midway", "Road Runner (Midway)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE | GAME_NOT_WORKING )
/* 619 */ GAME( 1977, dplay, 0, dplay, dplay, 0, ROT0, "Midway", "Double Play", GAME_SUPPORTS_SAVE )
/* 622 */ GAME( 1977, lagunar, 0, zzzap, lagunar, 0, ROT90, "Midway", "Laguna Racer", GAME_NO_SOUND | GAME_SUPPORTS_SAVE )
/* 623 */ GAME( 1977, gmissile, 0, gmissile, gmissile, 0, ROT0, "Taito / Midway", "Missile X / Guided Missile", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )

View file

@ -1108,6 +1108,7 @@ const game_driver * const drivers[] =
DRIVER( boothill ) /* 612 [1977] */
DRIVER( checkmat ) /* 615 [1977] */
DRIVER( desertgu ) /* 618 [1977] */
DRIVER( roadrunm ) /* 618 [1977] */
DRIVER( dplay ) /* 619 [1977] */
DRIVER( lagunar ) /* 622 [1977] */
DRIVER( gmissile ) /* 623 [1977] */