Author Topic: phoenix cps2 game errors  (Read 7125 times)

Offline nova

  • Newbies
  • *
  • Posts: 13
  • Karma: +0/-0
phoenix cps2 game errors
« on: December 15, 2006, 10:37:11 AM »
hi all
i have a little problem with a driver
Code: [Select]
ROM_START( sfad )
ROM_REGION( CODE_SIZE, REGION_CPU1, 0 )      /* 68000 code */
ROM_LOAD16_WORD_SWAP( "sfzd.03d", 0x000000, 0x80000, CRC(3000a54f) SHA1(c3a2a1e04b63e322f2c2a676e99182987e2e6a4c) )
ROM_LOAD16_WORD_SWAP( "sfz.04b",  0x080000, 0x80000, CRC(8b73b0e5) SHA1(5318761f615c21395366b5333e75eaaa73ef2073) )
ROM_LOAD16_WORD_SWAP( "sfz.05a",  0x100000, 0x80000, CRC(0810544d) SHA1(5f39bda3e7b16508eb58e5a2e0cc58c09cf428ce) )
ROM_LOAD16_WORD_SWAP( "sfz.06",   0x180000, 0x80000, CRC(806e8f38) SHA1(b6d6912aa8f2f590335d7ff9a8214648e7131ebb) )

ROM_REGION16_BE( CODE_SIZE, REGION_USER1, 0 )
// ROM_LOAD16_WORD_SWAP( "xxxx", 0x000000, 0x80000, NO_DUMP )
// ROM_LOAD16_WORD_SWAP( "xxxx", 0x080000, 0x80000, NO_DUMP )

ROM_REGION( 0x1000000, REGION_GFX1, 0 )
ROM_FILL(              0x000000, 0x800000, 0 )
ROMX_LOAD( "sfz.14m",   0x800000, 0x200000, CRC(90fefdb3) SHA1(5eb28c8de57acfeaefebdd01509c7d9ba5244705) , ROM_GROUPWORD | ROM_SKIP(6) )
ROMX_LOAD( "sfz.16m",   0x800002, 0x200000, CRC(5354c948) SHA1(07588f1ba6addc04fef3274c971174aaf3e632ab) , ROM_GROUPWORD | ROM_SKIP(6) )
ROMX_LOAD( "sfz.18m",   0x800004, 0x200000, CRC(41a1e790) SHA1(ce25dad542308691dbe9606b26279bbd59ea4b81) , ROM_GROUPWORD | ROM_SKIP(6) )
ROMX_LOAD( "sfz.20m",   0x800006, 0x200000, CRC(a549df98) SHA1(f054e95df650a891ef56da8bfb31cb2c945a9aed) , ROM_GROUPWORD | ROM_SKIP(6) )

ROM_REGION( QSOUND_SIZE, REGION_CPU2, 0 ) /* 64k for the audio CPU (+banks) */
ROM_LOAD( "sfz.01",   0x00000, 0x08000, CRC(ffffec7d) SHA1(75b4aef001b72a0f571b51b2b97803facc1832dd) )
ROM_CONTINUE(         0x10000, 0x18000 )
ROM_LOAD( "sfz.02",   0x28000, 0x20000, CRC(45f46a08) SHA1(e32dbd27b52ab708278045b5a829376e55a4ca81) )

ROM_REGION( 0x400000, REGION_SOUND1, 0 ) /* QSound samples */
ROM_LOAD16_WORD_SWAP( "sfz.11m",   0x000000, 0x200000, CRC(c4b093cd) SHA1(256526bb693a0b72443f047e060304c9b739acd1) )
ROM_LOAD16_WORD_SWAP( "sfz.12m",   0x200000, 0x200000, CRC(8bdbc4b4) SHA1(0e21c9a75a17a7e7dfd8bb51098c2b9dc4c933ec) )
ROM_END
GAME( 1995, sfad,     sfa,     phoenix, ssf2,    cps2, ROT0,   "Capcom", "Street Fighter Alpha: Warriors' Dreams - Phoenix Edition (US 950727)", 0 )
after 20 sec to play the game make this error , anyone have an idea ??
thx by advance

Offline iq_132

  • Administrator
  • *****
  • Posts: 3728
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: phoenix cps2 game errors
« Reply #1 on: December 16, 2006, 02:32:21 PM »
I don't have any problems when playing this game ^^

However, at the address shown in your screenshot, there is an unrecognized op, so try this:

Code: [Select]
DRIVER_INIT( sfad )
{
UINT16 *rom = (UINT16 *)memory_region(REGION_USER1);
init_cps2(machine);
rom[0x3e6fc/2] = 0x4e71; // 0x4e04
}


Offline Ashura-X

  • Member
  • ***
  • Posts: 138
  • Karma: +0/-0
Re: phoenix cps2 game errors
« Reply #2 on: December 16, 2006, 03:56:51 PM »
No problem here too using my build!
Are you sure if didnt you changed the region board using the Phoenix setting menu at the startup?

Offline nova

  • Newbies
  • *
  • Posts: 13
  • Karma: +0/-0
Re: phoenix cps2 game errors
« Reply #3 on: December 16, 2006, 04:09:56 PM »
i dont have change region and i have try your build for test and
i have same problem , the game make me same error i'm going
to be crazy lol , add a driver init for sfad make error too i go try
remake test with your build ashura

ps something strange , i dont have play with all characters
    but actually after try 3 different characters this bug appears
    only when i play with ken  :confused: :idiot: lol
« Last Edit: December 16, 2006, 04:50:30 PM by nova »