summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author mamehaze <mamehaze@users.noreply.github.com>2015-03-23 21:08:48 +0000
committer mamehaze <mamehaze@users.noreply.github.com>2015-03-23 21:08:48 +0000
commit7066eb4f9f59fdccc8bce31288b9085c1c3f9c45 (patch)
tree9b53ed45f77f982f7f2b220c663358a1202afc82 /src
parent61038a7b889cf200d4bad99081937272cd809421 (diff)
new clones
Thunder Deity Biography (Chinese hack of Battle Garegga) [caius] (correct text gfx rom still needs dumping for this set)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/toaplan2.c28
-rw-r--r--src/mame/mame.lst1
2 files changed, 28 insertions, 1 deletions
diff --git a/src/mame/drivers/toaplan2.c b/src/mame/drivers/toaplan2.c
index 67f321e0381..1bdc544e479 100644
--- a/src/mame/drivers/toaplan2.c
+++ b/src/mame/drivers/toaplan2.c
@@ -4876,7 +4876,32 @@ ROM_START( bgareggabl )
ROM_REGION( 0x010000, "text", 0 )
ROM_LOAD( "1#-256", 0x00000, 0x08000, CRC(760dcd14) SHA1(e151e5d7ca5557277f306b9484ec021f4edf1e07) )
- ROM_LOAD( "2#-256", 0x08000, 0x08000, CRC(456dd16e) SHA1(84779ee64d3ea33ba1ba4dee39b504a81c6811a1) )
+
+ ROM_REGION( 0x010000, "user1", 0 ) // not graphics
+ ROM_LOAD( "2#-256", 0x00000, 0x08000, CRC(456dd16e) SHA1(84779ee64d3ea33ba1ba4dee39b504a81c6811a1) )
+
+ ROM_REGION( 0x140000, "oki", 0 ) /* ADPCM Samples */
+ ROM_LOAD( "rom5.bin", 0x040000, 0x100000, CRC(f6d49863) SHA1(3a3c354852adad06e8a051511abfab7606bce382) )
+ROM_END
+
+ROM_START( bgareggabla )
+ ROM_REGION( 0x100000, "maincpu", 0 ) /* Main 68K code */
+ ROM_LOAD16_WORD_SWAP( "27c8100.mon-sys", 0x000000, 0x100000, CRC(d334e5aa) SHA1(41607b5630d7b92a96607ea95c5b55ad43745857) )
+
+ ROM_REGION( 0x20000, "audiocpu", 0 ) /* Sound Z80 code + bank */
+ ROM_LOAD( "snd.bin", 0x00000, 0x20000, CRC(68632952) SHA1(fb834db83157948e2b420b6051102a9c6ac3969b) )
+
+ ROM_REGION( 0x800000, "gp9001", 0 )
+ ROM_LOAD( "rom4.bin", 0x000000, 0x200000, CRC(b333d81f) SHA1(5481465f1304334fd55798be2f44324c57c2dbcb) )
+ ROM_LOAD( "rom3.bin", 0x200000, 0x200000, CRC(51b9ebfb) SHA1(30e0c326f5175aa436df8dba08f6f4e08130b92f) )
+ ROM_LOAD( "rom2.bin", 0x400000, 0x200000, CRC(b330e5e2) SHA1(5d48e9d56f99d093b6390e0af1609fd796df2d35) )
+ ROM_LOAD( "rom1.bin", 0x600000, 0x200000, CRC(7eafdd70) SHA1(7c8da8e86c3f9491719b1d7d5d285568d7614f38) )
+
+ ROM_REGION( 0x010000, "text", 0 )
+ ROM_LOAD( "text.u81", 0x00000, 0x08000, BAD_DUMP CRC(e67fd534) SHA1(987d0edffc2c243a13d4567319ea3d185eaadbf8) ) // should contain different title logo for this game
+
+ ROM_REGION( 0x010000, "user1", 0 ) // not graphics
+ ROM_LOAD( "2#-256", 0x00000, 0x08000, CRC(456dd16e) SHA1(84779ee64d3ea33ba1ba4dee39b504a81c6811a1) )
ROM_REGION( 0x140000, "oki", 0 ) /* ADPCM Samples */
ROM_LOAD( "rom5.bin", 0x040000, 0x100000, CRC(f6d49863) SHA1(3a3c354852adad06e8a051511abfab7606bce382) )
@@ -5345,6 +5370,7 @@ GAME( 1996, bgaregganv, bgaregga, bgaregga, bgareggahk, toaplan2_state, bgaregga
GAME( 1996, bgareggat2, bgaregga, bgaregga, bgaregga, toaplan2_state, bgaregga, ROT270, "Raizing / Eighting", "Battle Garegga - Type 2 (Europe / USA / Japan / Asia) (Sat Mar 2 1996)" , GAME_SUPPORTS_SAVE ) // displays Type 2 only when set to Europe
GAME( 1996, bgareggacn, bgaregga, bgaregga, bgareggacn, toaplan2_state, bgaregga, ROT270, "Raizing / Eighting", "Battle Garegga - Type 2 (Denmark / China) (Tue Apr 2 1996)", GAME_SUPPORTS_SAVE ) // displays Type 2 only when set to Denmark
GAME( 1996, bgareggabl, bgaregga, bgareggabl,bgareggacn, toaplan2_state,bgaregga, ROT270, "bootleg", "1945 Part-2 (Chinese hack of Battle Garegga)", GAME_SUPPORTS_SAVE )
+GAME( 1996, bgareggabla,bgaregga, bgareggabl,bgareggacn, toaplan2_state,bgaregga, ROT270, "bootleg", "Thunder Deity Biography (Chinese hack of Battle Garegga)", GAME_SUPPORTS_SAVE )
// these are all based on Version B, even if only the Japan version states 'version B'
GAME( 1998, batrider, 0, batrider, batrider, toaplan2_state, batrider, ROT270, "Raizing / Eighting", "Armed Police Batrider (Europe) (Fri Feb 13 1998)", GAME_SUPPORTS_SAVE )
diff --git a/src/mame/mame.lst b/src/mame/mame.lst
index 78fb22ae122..cc31e505792 100644
--- a/src/mame/mame.lst
+++ b/src/mame/mame.lst
@@ -2757,6 +2757,7 @@ bgaregganv // (c) 1996 Raizing/8ing
bgareggat2 // (c) 1996 Raizing/8ing
bgareggacn // (c) 1996 Raizing/8ing
bgareggabl // hack
+bgareggabla // hack
batrider // (c) 1998 Raizing/8ing
batrideru // (c) 1998 Raizing/8ing
batriderc // (c) 1998 Raizing/8ing