trunk/hash/neogeo.xml
| r242122 | r242123 | |
| 3566 | 3566 | <!-- VIC940800 --> |
| 3567 | 3567 | </dataarea> |
| 3568 | 3568 | <dataarea name="fixed" size="0x040000"> |
| 3569 | | <rom offset="0x000000" size="0x020000" name="060-s1.s1" crc="7f012104" sha1="f366dcc3923655dff16ec08a40d5fce22a84257d" /> |
| 3569 | <rom offset="0x000000" size="0x020000" name="060-s1.s1" crc="d62a72e9" sha1="a23e4c4fd4ec11a7467ce41227c418b4dd1ef649" /> |
| 3570 | 3570 | <!-- VIC930100 --> |
| 3571 | 3571 | </dataarea> |
| 3572 | 3572 | <dataarea name="audiocpu" size="0x020000"> |
| r242122 | r242123 | |
| 3604 | 3604 | <rom loadflag="load16_word_swap" name="060-p1.p1" offset="0x000000" size="0x100000" crc="2a104b50" sha1="3eb663d3df7074e1cdf4c0e450a35c9cf55d8979" /> |
| 3605 | 3605 | <!-- VIC940800 --> |
| 3606 | 3606 | <!-- the rom below acts as a patch to the program rom in the cart, replacing the first 512kb --> |
| 3607 | | <rom loadflag="load16_word_swap" name="060-epr.sp2" offset="0x000000" size="0x080000" status="baddump" crc="3032041b" sha1="4b8ed2e6f74579ea35a53e06ccac42d6905b0f51" /> |
| 3608 | | <!-- P is on eprom, correct chip label unknown --> |
| 3607 | <rom loadflag="load16_word_swap" name="1.sp2" offset="0x000000" size="0x080000" crc="3032041b" sha1="4b8ed2e6f74579ea35a53e06ccac42d6905b0f51" /> |
| 3608 | <!-- P is on eprom, has a Viccom logo at the top of the label with a circled '1' in the center --> |
| 3609 | 3609 | </dataarea> |
| 3610 | 3610 | <dataarea name="fixed" size="0x040000"> |
| 3611 | | <rom offset="0x000000" size="0x020000" name="060-s1.s1" crc="7f012104" sha1="f366dcc3923655dff16ec08a40d5fce22a84257d" /> |
| 3611 | <rom offset="0x000000" size="0x020000" name="060-s1.s1" crc="d62a72e9" sha1="a23e4c4fd4ec11a7467ce41227c418b4dd1ef649" /> |
| 3612 | 3612 | <!-- VIC930100 --> |
| 3613 | 3613 | </dataarea> |
| 3614 | 3614 | <dataarea name="audiocpu" size="0x020000"> |
trunk/src/mame/drivers/neogeo_noslot.c
| r242122 | r242123 | |
| 2539 | 2539 | ROM_REGION( 0x100000, "maincpu", 0 ) |
| 2540 | 2540 | ROM_LOAD16_WORD_SWAP( "060-p1.p1", 0x0000000, 0x100000, CRC(2a104b50) SHA1(3eb663d3df7074e1cdf4c0e450a35c9cf55d8979) ) /* VIC940800 */ |
| 2541 | 2541 | |
| 2542 | | NEO_SFIX_128K( "060-s1.s1", CRC(7f012104) SHA1(f366dcc3923655dff16ec08a40d5fce22a84257d) ) /* VIC930100 */ |
| 2542 | NEO_SFIX_128K( "060-s1.s1", CRC(d62a72e9) SHA1(a23e4c4fd4ec11a7467ce41227c418b4dd1ef649) ) /* VIC930100 */ |
| 2543 | 2543 | |
| 2544 | 2544 | NEO_BIOS_AUDIO_128K( "060-m1.m1", CRC(0b7c4e65) SHA1(999a1e784de18db3f1332b30bc425836ea6970be) ) /* VIC930100 */ |
| 2545 | 2545 | |
| r242122 | r242123 | |
| 2560 | 2560 | ROM_REGION( 0x100000, "maincpu", 0 ) |
| 2561 | 2561 | ROM_LOAD16_WORD_SWAP( "060-p1.p1", 0x0000000, 0x100000, CRC(2a104b50) SHA1(3eb663d3df7074e1cdf4c0e450a35c9cf55d8979) ) /* VIC940800 */ |
| 2562 | 2562 | /* the rom below acts as a patch to the program rom in the cart, replacing the first 512kb */ |
| 2563 | | ROM_LOAD16_WORD_SWAP( "060-epr.sp2", 0x000000, 0x080000, BAD_DUMP CRC(3032041b) SHA1(4b8ed2e6f74579ea35a53e06ccac42d6905b0f51) ) |
| 2564 | | /* P is on eprom, correct chip label unknown */ |
| 2563 | ROM_LOAD16_WORD_SWAP( "1.sp2", 0x000000, 0x080000, CRC(3032041b) SHA1(4b8ed2e6f74579ea35a53e06ccac42d6905b0f51) ) |
| 2564 | /* P is on eprom, has a Viccom logo at the top of the label with a circled '1' in the center */ |
| 2565 | 2565 | |
| 2566 | | NEO_SFIX_128K( "060-s1.s1", CRC(7f012104) SHA1(f366dcc3923655dff16ec08a40d5fce22a84257d) ) /* VIC930100 */ |
| 2566 | NEO_SFIX_128K( "060-s1.s1", CRC(d62a72e9) SHA1(a23e4c4fd4ec11a7467ce41227c418b4dd1ef649) ) /* VIC930100 */ |
| 2567 | 2567 | |
| 2568 | 2568 | NEO_BIOS_AUDIO_128K( "060-m1.m1", CRC(0b7c4e65) SHA1(999a1e784de18db3f1332b30bc425836ea6970be) ) /* VIC930100 */ |
| 2569 | 2569 | |