summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-05-01 13:51:13 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-05-01 13:51:13 +0000
commit78f2c757513ca4ebc64488a6a3d27dd3f66fe684 (patch)
treef0bbb4d0149b2b4ae555e41298cd511d94397c2e
parentc967dcb1023ee7e64a81de95f50428ca98f3500c (diff)
From: Corrado Tomaselli [mailto:corrado.to@tiscali.it]
Sent: Saturday, April 26, 2008 7:31 AM To: submit@mamedev.org Subject: Raimais (japan / First revision) Diff + romset of Raimais (japan / first revision). New game added: Raimais (Japan / First Revision)
-rw-r--r--src/mame/drivers/taito_l.c22
-rw-r--r--src/mame/mamedriv.c1
2 files changed, 23 insertions, 0 deletions
diff --git a/src/mame/drivers/taito_l.c b/src/mame/drivers/taito_l.c
index 336d32d5dbf..98864e1fa29 100644
--- a/src/mame/drivers/taito_l.c
+++ b/src/mame/drivers/taito_l.c
@@ -2646,6 +2646,27 @@ ROM_START( raimaisj )
ROM_LOAD( "b36-03.bin", 0x00000, 0x80000, CRC(96166516) SHA1(a6748218188cbd1b037f6c0845416665c0d55a7b) )
ROM_END
+ROM_START( raimaijo )
+ ROM_REGION( 0xb0000, REGION_CPU1, 0 )
+ ROM_LOAD( "b36-08.bin", 0x00000, 0x20000, CRC(f40b9178) SHA1(ccf5afcf08cac0d5b2d6ba74abd62d35412f0265) )
+ ROM_RELOAD( 0x10000, 0x20000 )
+ ROM_LOAD( "b36-09.bin", 0x30000, 0x20000, CRC(9c466e43) SHA1(2466a3f1f8124323008c9925f90e9a1d2edf1564) )
+
+ ROM_REGION( 0x1c000, REGION_CPU2, 0 ) /* sound (audio/rastan.c wants it as #2 */
+ ROM_LOAD( "b36-06.bin", 0x00000, 0x4000, CRC(29bbc4f8) SHA1(39a68729c6180c5f6cdf604e692018e7d6bf5591) )
+ ROM_CONTINUE( 0x10000, 0xc000 )
+
+ ROM_REGION( 0x10000, REGION_CPU3, 0 )
+ ROM_LOAD( "b36-07.bin", 0x00000, 0x10000, CRC(4f3737e6) SHA1(ff5f5d4ca5485441d03c8cb01a6a096941ab02eb) )
+
+ ROM_REGION( 0x100000, REGION_GFX1, ROMREGION_DISPOSE )
+ ROM_LOAD( "b36-01.bin", 0x00000, 0x80000, CRC(89355cb2) SHA1(433e929fe8b488af84e88486d9679468a3d9677a) )
+ ROM_LOAD( "b36-02.bin", 0x80000, 0x80000, CRC(e71da5db) SHA1(aa47ae02c359264c0a1f09ecc583eefd1ef1dfa4) )
+
+ ROM_REGION( 0x80000, REGION_SOUND1, 0 )
+ ROM_LOAD( "b36-03.bin", 0x00000, 0x80000, CRC(96166516) SHA1(a6748218188cbd1b037f6c0845416665c0d55a7b) )
+ROM_END
+
ROM_START( fhawk )
ROM_REGION( 0xb0000, REGION_CPU1, 0 )
ROM_LOAD( "b70-11.bin", 0x00000, 0x20000, CRC(7d9f7583) SHA1(d8fa7c66a81fb356fa9c72f377bfc31b1837eafb) )
@@ -3110,6 +3131,7 @@ static DRIVER_INIT( evilston )
GAME( 1988, raimais, 0, raimais, raimais, 0, ROT0, "Taito Corporation Japan", "Raimais (World)", 0 )
GAME( 1988, raimaisj, raimais, raimais, raimaisj, 0, ROT0, "Taito Corporation", "Raimais (Japan)", 0 )
+GAME( 1988, raimaijo, raimais, raimais, raimaisj, 0, ROT0, "Taito Corporation", "Raimais (Japan / First Revision)", 0 )
GAME( 1988, fhawk, 0, fhawk, fhawk, 0, ROT270, "Taito Corporation Japan", "Fighting Hawk (World)", 0 )
GAME( 1988, fhawkj, fhawk, fhawk, fhawkj, 0, ROT270, "Taito Corporation", "Fighting Hawk (Japan)", 0 )
GAME( 1989, champwr, 0, champwr, champwr, 0, ROT0, "Taito Corporation Japan", "Champion Wrestler (World)", GAME_IMPERFECT_SOUND )
diff --git a/src/mame/mamedriv.c b/src/mame/mamedriv.c
index 238f2ad3b84..aeb1da43ae0 100644
--- a/src/mame/mamedriv.c
+++ b/src/mame/mamedriv.c
@@ -1761,6 +1761,7 @@ const game_driver * const drivers[] =
/* Taito L-System games */
DRIVER( raimais ) /* B36 (c) 1988 Taito Corporation (Japan) */
DRIVER( raimaisj ) /* B36 (c) 1988 Taito Corporation */
+ DRIVER( raimaijo ) /* B36 (c) 1988 Taito Corporation */
DRIVER( kurikint ) /* B42 (c) 1988 Taito Corporation Japan (World) */
DRIVER( kurikinu ) /* B42 (c) 1988 Taito America Corporation (US) */
DRIVER( kurikinj ) /* B42 (c) 1988 Taito Corporation (Japan) */