diff options
author | 2022-09-29 18:18:52 +0200 | |
---|---|---|
committer | 2022-09-29 18:18:52 +0200 | |
commit | 9b99e307eb55b6b4cf3cdf43e98adff42b625b8f (patch) | |
tree | 7da7672b0d55ae70248dd283027f575d6bb53ac9 | |
parent | d1cefdfed00f06706f10aadecf36e0ab858d39ba (diff) |
New clones marked as NOT_WORKING
--------------------------------
Pro Bowl 2 [hammy]
-rw-r--r-- | src/mame/mame.lst | 1 | ||||
-rw-r--r-- | src/mame/toaplan/toaplan2.cpp | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 10c4326bed8..f3910f5fdbb 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -42173,6 +42173,7 @@ pipibibsbl // (c) 1991 Ryouta Kikaku (bootleg) pipibibsbl2 // bootleg pipibibsbl3 // (c) 1991 Ryouta Kikaku (bootleg) pipibibsp // TP-025 +probowl2 // (c) 1996 Zuck + Able license pwrkick // (c) 1994 Sunwise shippumd // (c) 1994 Raizing/8ing snowbro2 // TP-033 (c) 1994 Hanafram diff --git a/src/mame/toaplan/toaplan2.cpp b/src/mame/toaplan/toaplan2.cpp index 2b132599d73..85a64dde872 100644 --- a/src/mame/toaplan/toaplan2.cpp +++ b/src/mame/toaplan/toaplan2.cpp @@ -6044,6 +6044,22 @@ ROM_START( nprobowl ) ROM_LOAD( "newprobowl-adpcm1-u0835", 0x80000, 0x80000, CRC(8c191e60) SHA1(f81c2849ffc553d921fc680cd50c2997b834c44a) ) ROM_END +ROM_START( probowl2 ) // identical to New Pro Bowl but for slight mods to the GFX ROMs to display the different title + ROM_REGION( 0x200000, "maincpu", 0 ) + ROM_LOAD16_BYTE( "probowl2.prg0.u021", 0x000000, 0x080000, CRC(3a57f122) SHA1(cc361c295f23bc0479ba49eb15de2ec6ca535a56) ) // 11xxxxxxxxxxxxxxxxx = 0xFF + ROM_LOAD16_BYTE( "probowl2.prg1.u024", 0x000001, 0x080000, CRC(9e9bb58a) SHA1(3d2159bde418dee5d89e3df9a248b4b1989e6ee9) ) // 11xxxxxxxxxxxxxxxxx = 0xFF + + ROM_REGION( 0x200000, "gp9001_0", 0 ) + ROM_LOAD16_BYTE( "probowl2.chr1.u0519", 0x000000, 0x80000, CRC(66a5c9cd) SHA1(b8edc6a66e3929af2a1399e5fb6fc341b9789136) ) + ROM_LOAD16_BYTE( "probowl2.chr0.u0518", 0x000001, 0x80000, CRC(b4439673) SHA1(5ca19d9c3c3cce9485fb9bd5224f0b14abe07f49) ) + ROM_LOAD16_BYTE( "probowl2.chr2.u0520", 0x100000, 0x80000, CRC(e05be3a0) SHA1(922c6f094358cf3df790063e68d5dd4a32d46b06) ) + ROM_LOAD16_BYTE( "probowl2.chr3.u0521", 0x100001, 0x80000, CRC(55e2565f) SHA1(b6a570b736a9b30e26d2a59b53f218ef5cd6f0f6) ) + + ROM_REGION( 0x100000, "oki1", 0 ) + ROM_LOAD( "probowl2.adpcm0.u0834", 0x00000, 0x80000, CRC(be2fb43f) SHA1(f3f9bc522f4668852b751f291cef0000bb86b779) ) + ROM_LOAD( "probowl2.adpcm1.u0835", 0x80000, 0x80000, CRC(8c191e60) SHA1(f81c2849ffc553d921fc680cd50c2997b834c44a) ) +ROM_END + // The following is in order of Toaplan Board/game numbers // See list at top of file @@ -6157,3 +6173,4 @@ GAME( 1999, bbakraidja, bbakraid, bbakraid, bbakraid, toaplan2_state, init_ // dedicated PCB GAME( 1996, nprobowl, 0, nprobowl, nprobowl, toaplan2_state, empty_init, ROT0, "Zuck / Able Corp", "New Pro Bowl", MACHINE_NOT_WORKING | MACHINE_IMPERFECT_GRAPHICS | MACHINE_IMPERFECT_SOUND | MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) // bad GFXs, no sound banking, controls, etc +GAME( 1996, probowl2, nprobowl, nprobowl, nprobowl, toaplan2_state, empty_init, ROT0, "Zuck / Able Corp", "Pro Bowl 2", MACHINE_NOT_WORKING | MACHINE_IMPERFECT_GRAPHICS | MACHINE_IMPERFECT_SOUND | MACHINE_MECHANICAL | MACHINE_SUPPORTS_SAVE ) // bad GFXs, no sound banking, controls, etc |