Previous 199869 Revisions Next

r25407 Tuesday 24th September, 2013 at 13:59:15 UTC by David Haywood
change note slightly based on findings (nw)
[src/mame/drivers]toaplan2.c

trunk/src/mame/drivers/toaplan2.c
r25406r25407
792792
793793READ8_MEMBER(toaplan2_state::fixeight_region_r)
794794{
795   // this must match the eeprom!
796   // however there is no valid value that makes the dumped eeprom boot
797   // this makes me wonder if there are decryption errors, therefore
798   // this code, and the default eeproms use should be considered subject
799   // to change
795   // this must match the eeprom region!
796   // however on the real PCB any of the EEPROMs we have work without any special treatment
797   // so is there a decryption error causing this to happen, or should this be read back
798   // from somewhere else?
800799
801800   if (!strcmp(machine().system().name,"fixeightkt"))  return 0x00;
802801   if (!strcmp(machine().system().name,"fixeightk"))   return 0x01;
r25406r25407
40314030   ROM_REGION( 0x40000, "oki", 0 ) \
40324031   ROM_LOAD( "tp-026-2", 0x00000, 0x40000, CRC(85063f1f) SHA1(1bf4d77494de421c98f6273b9876e60d827a6826) )
40334032
4033// note you may need to byteswap these EEPROM files to reprogram the original chip, this is the same for many supported in MAME.
4034
40344035ROM_START( fixeightkt )
40354036   ROMS_FIXEIGHT
40364037   ROM_REGION( 0x80, "eeprom", 0 )
r25406r25407
49594960GAME( 1991, pipibibsbl, pipibibs, pipibibsbl, pipibibsbl, toaplan2_state, pipibibsbl, ROT0, "bootleg (Ryouta Kikaku)", "Pipi & Bibis / Whoopee!! (bootleg)", GAME_SUPPORTS_SAVE )
49604961
49614962// region is in eeprom (and also requires correct return value from a v25 mapped address??)
4962// todo: something could be wrong here, because the _dumped_ eeprom doesn't work..
49634963GAME( 1992, fixeight,   0,        fixeight, fixeight, toaplan2_state, fixeight, ROT270, "Toaplan", "FixEight (Europe)",  GAME_SUPPORTS_SAVE )
49644964GAME( 1992, fixeightk,  fixeight, fixeight, fixeight, toaplan2_state, fixeight, ROT270, "Toaplan", "FixEight (Korea)",  GAME_SUPPORTS_SAVE )
49654965GAME( 1992, fixeighth,  fixeight, fixeight, fixeight, toaplan2_state, fixeight, ROT270, "Toaplan", "FixEight (Hong Kong)",  GAME_SUPPORTS_SAVE )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team