trunk/hash/neogeo.xml
| r242123 | r242124 | |
| 435 | 435 | <rom loadflag="load16_word_swap" name="006-p1.p1" offset="0x000000" size="0x080000" crc="d4aaf597" sha1="34d35b71adb5bd06f4f1b50ffd9c58ab9c440a84" /> |
| 436 | 436 | <!-- MB834200 --> |
| 437 | 437 | </dataarea> |
| 438 | | <dataarea name="mcu" size="0x1000"> |
| 438 | <dataarea name="mcu" size="0x2000"> |
| 439 | 439 | <!-- Hitachi HD6301V1 MCU --> |
| 440 | | <!-- <rom name="hd6301v1p.com", 0x0000, 0x1000, NO_DUMP /> --> |
| 440 | <rom offset="0x000000" size="0x02000" name="rhcom.bin" crc="e5cd6306" sha1="f6bbb8ae562804d67e137290c765c3589fa334c0" /> |
| 441 | <!-- dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally) --> |
| 441 | 442 | </dataarea> |
| 442 | 443 | <dataarea name="fixed" size="0x040000"> |
| 443 | 444 | <rom offset="0x000000" size="0x020000" name="006-s1.s1" crc="eb5189f0" sha1="0239c342ea62e73140a2306052f226226461a478" /> |
| r242123 | r242124 | |
| 487 | 488 | <rom loadflag="load16_word_swap" name="006-pg1.p1" offset="0x000000" size="0x080000" status="baddump" crc="52445646" sha1="647bb31f2f68453c1366cb6e2e867e37d1df7a54" /> |
| 488 | 489 | <!-- Chip label p1h does not exist, renamed temporarly to pg1, marked BAD_DUMP. This needs to be verified. --> |
| 489 | 490 | </dataarea> |
| 490 | | <dataarea name="mcu" size="0x1000"> |
| 491 | <dataarea name="mcu" size="0x2000"> |
| 491 | 492 | <!-- Hitachi HD6301V1 MCU --> |
| 492 | | <!-- <rom name="hd6301v1p.com", 0x0000, 0x1000, NO_DUMP /> --> |
| 493 | <rom offset="0x000000" size="0x02000" name="rhcom.bin" crc="e5cd6306" sha1="f6bbb8ae562804d67e137290c765c3589fa334c0" /> |
| 494 | <!-- dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally) --> |
| 493 | 495 | </dataarea> |
| 494 | 496 | <dataarea name="fixed" size="0x040000"> |
| 495 | 497 | <rom offset="0x000000" size="0x020000" name="006-s1.s1" crc="eb5189f0" sha1="0239c342ea62e73140a2306052f226226461a478" /> |
trunk/src/mame/drivers/neogeo_noslot.c
| r242123 | r242124 | |
| 620 | 620 | ROM_REGION( 0x100000, "maincpu", 0 ) |
| 621 | 621 | ROM_LOAD16_WORD_SWAP( "006-p1.p1", 0x000000, 0x080000, CRC(d4aaf597) SHA1(34d35b71adb5bd06f4f1b50ffd9c58ab9c440a84) ) /* MB834200 */ |
| 622 | 622 | |
| 623 | | ROM_REGION( 0x1000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */ |
| 624 | | ROM_LOAD( "hd6301v1p.com", 0x0000, 0x1000, NO_DUMP ) |
| 623 | ROM_REGION( 0x2000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */ |
| 624 | ROM_LOAD( "rhcom.bin", 0x0000, 0x2000, CRC(e5cd6306) SHA1(f6bbb8ae562804d67e137290c765c3589fa334c0) ) // dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally) |
| 625 | 625 | |
| 626 | 626 | NEO_SFIX_128K( "006-s1.s1", CRC(eb5189f0) SHA1(0239c342ea62e73140a2306052f226226461a478) ) /* TC531000 */ |
| 627 | 627 | |
| r242123 | r242124 | |
| 649 | 649 | ROM_LOAD16_WORD_SWAP( "006-pg1.p1", 0x000000, 0x080000, BAD_DUMP CRC(52445646) SHA1(647bb31f2f68453c1366cb6e2e867e37d1df7a54) ) |
| 650 | 650 | /* Chip label p1h does not exist, renamed temporarly to pg1, marked BAD_DUMP. This needs to be verified. */ |
| 651 | 651 | |
| 652 | | ROM_REGION( 0x1000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */ |
| 653 | | ROM_LOAD( "hd6301v1p.com", 0x0000, 0x1000, NO_DUMP ) |
| 652 | ROM_REGION( 0x2000, "mcu", 0 ) /* Hitachi HD6301V1 MCU */ |
| 653 | ROM_LOAD( "rhcom.bin", 0x0000, 0x2000, CRC(e5cd6306) SHA1(f6bbb8ae562804d67e137290c765c3589fa334c0) ) // dumped from a prototype with external ROM, not 100% confirmed as being the same on a final, or other games (lbowling, trally) |
| 654 | 654 | |
| 655 | 655 | NEO_SFIX_128K( "006-s1.s1", CRC(eb5189f0) SHA1(0239c342ea62e73140a2306052f226226461a478) ) /* TC531000 */ |
| 656 | 656 | |