diff --git a/src/mame/drivers/tmnt.c b/src/mame/drivers/tmnt.c index 9027ffce4bc..68dd8d0dd2c 100644 --- a/src/mame/drivers/tmnt.c +++ b/src/mame/drivers/tmnt.c @@ -3949,6 +3949,26 @@ ROM_START( ssridersb ) ROM_LOAD( "sunsetb.02", 0x080000, 0x080000, CRC(5d485523) SHA1(478119cb6273d870ca04a66e9b964ca0424f6fbd) ) ROM_END +ROM_START( ssriders2 ) + ROM_REGION( 0x100000, "maincpu", 0 ) /* 2*32k for 68000 code */ + ROM_LOAD16_WORD_SWAP( "3.bin", 0x000000, 0x080000, CRC(d8d802c5) SHA1(1b5362edd6756586b95b59779a74c804fe69786a) ) + ROM_LOAD16_WORD_SWAP( "4.bin", 0x080000, 0x080000, CRC(8ff647b7) SHA1(75144ce928fc4e7d24d9dd50a93e11ea41903bc4) ) + + ROM_REGION( 0x100000, "gfx1", 0 ) /* graphics (addressable by the main CPU) */ + ROM_LOAD( "9.bin", 0x000000, 0x080000, CRC(e2bdc619) SHA1(04449deb267b0beacfa33640b593eb16194aa0d9) ) /* tiles */ + ROM_LOAD( "10.bin", 0x080000, 0x080000, CRC(2d8ca8b0) SHA1(7c882f79c2402cf75979c681071007d76e4db9ae) ) + + ROM_REGION( 0x200000, "gfx2", 0 ) /* graphics (addressable by the main CPU) */ + ROM_LOAD( "5.bin", 0x000000, 0x080000, CRC(4ee77259) SHA1(92cb3ae296b1c42b70ce636a989c03d898ca35cf) ) + ROM_LOAD( "6.bin", 0x080000, 0x080000, CRC(fdf2c887) SHA1(a165c7e6495d870324f59262ad4175a039e199a5) ) + ROM_LOAD( "7.bin", 0x100000, 0x080000, CRC(3f1f7222) SHA1(14547c308180e5009f3ea8edcea58d96aa039919) ) + ROM_LOAD( "8.bin", 0x180000, 0x080000, CRC(a91b9171) SHA1(e7002fe176196c297073ebf48e6fa5b1fe62caa1) ) + + ROM_REGION( 0x100000, "oki", 0 ) /* samples */ + ROM_LOAD( "1.bin", 0x000000, 0x080000, CRC(1a8b5ca2) SHA1(4101686c7bf3243273a52fca046b252fc3c78721) ) + ROM_LOAD( "2.bin", 0x080000, 0x080000, CRC(5d485523) SHA1(478119cb6273d870ca04a66e9b964ca0424f6fbd) ) +ROM_END + ROM_START( thndrx2 ) ROM_REGION( 0x40000, "maincpu", 0 ) /* 2*32k for 68000 code */ ROM_LOAD16_BYTE( "073-ea-l02.11c", 0x000000, 0x20000, CRC(eae02b51) SHA1(ac513919b183d5353792418e6190c484c5cf1bcd) ) @@ -4335,6 +4355,7 @@ GAME( 1991, ssridersabd, ssriders, ssriders, ssriders, 0, ROT0, "Konami" GAME( 1991, ssridersadd, ssriders, ssriders, ssrid4ps, 0, ROT0, "Konami", "Sunset Riders (4 Players ver ADD)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE ) GAME( 1991, ssridersjbd, ssriders, ssriders, ssriders, 0, ROT0, "Konami", "Sunset Riders (2 Players ver JBD)", GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE ) GAME( 1991, ssridersb, ssriders, sunsetbl, sunsetbl, 0, ROT0, "bootleg","Sunset Riders (bootleg 4 Players ver ADD)", GAME_NOT_WORKING | GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE ) +GAME( 1991, ssriders2, ssriders, sunsetbl, sunsetbl, 0, ROT0, "bootleg","Sunset Riders 2 (bootleg 4 Players ver ADD)", GAME_NOT_WORKING | GAME_IMPERFECT_GRAPHICS | GAME_SUPPORTS_SAVE ) GAME( 1991, thndrx2, 0, thndrx2, thndrx2, 0, ROT0, "Konami", "Thunder Cross II (World)", GAME_SUPPORTS_SAVE ) GAME( 1991, thndrx2a, thndrx2, thndrx2, thndrx2, 0, ROT0, "Konami", "Thunder Cross II (Asia)", GAME_SUPPORTS_SAVE ) diff --git a/src/mame/mamedriv.c b/src/mame/mamedriv.c index 1fbf84e112a..9ce4d7cc236 100644 --- a/src/mame/mamedriv.c +++ b/src/mame/mamedriv.c @@ -5671,6 +5671,7 @@ BOMULEUL CHAJARA SEGA ST-V 1997/04/11 DRIVER( ssridersadd ) /* GX064 (c) 1991 (Asia) */ DRIVER( ssridersjbd ) /* GX064 (c) 1991 (Japan) */ DRIVER( ssridersb ) /* bootleg */ + DRIVER( ssriders2 ) /* bootleg */ DRIVER( xmen ) /* GX065 (c) 1992 (US) */ DRIVER( xmenj ) /* GX065 (c) 1992 (Japan) */ DRIVER( xmene ) /* GX065 (c) 1992 (Europe) */