Page 1 of 1

SNES Powerpak : Ys 3

Posted: Tue Dec 13, 2011 7:46 am
by Great Hierophant
Try as I might, I cannot get Ys 3 to save/load properly on my Powerpak. I have tried two SNESs, two CF cards and the US and Japanese versions of the game.

The game will start up fine and work just fine until you try to load a game. If you never save, there is apparently no issue, but if you load a game or die and the game reloads, all you get is a blank or garbled screen with music (wrong or random) playing. Nothing further can be done other than resetting the machine. Also, the save is designated by the area, but using the save feature will not change the area name.

Posted: Tue Dec 13, 2011 11:20 am
by MottZilla
I haven't heard of this issue. I'll try it on my PowerPAK today and let you know if I have the same problem.

Posted: Tue Dec 13, 2011 11:17 pm
by Overload
It's most likely a SRAM mapping issue with the Powerpak. Early Mode 20 pcbs mapped SRAM from 0000-FFFF of bank 70-77 while MAD-1 pcbs map SRAM from 0000-7FFF. Y's 3 is the only game I can remember that writes in the upper region. Hacking the ROM is the only way you'll get it to work ;)

Posted: Wed Dec 14, 2011 12:55 am
by MottZilla
I had the same issue. If it's SRAM related, the game only has 8kb of it and depending how it's accessed I suppose it wouldn't be that hard to modify if you had a proper debugger.

Posted: Wed Dec 14, 2011 7:22 am
by Great Hierophant
Overload wrote:It's most likely a SRAM mapping issue with the Powerpak. Early Mode 20 pcbs mapped SRAM from 0000-FFFF of bank 70-77 while MAD-1 pcbs map SRAM from 0000-7FFF. Y's 3 is the only game I can remember that writes in the upper region. Hacking the ROM is the only way you'll get it to work ;)
Wouldn't the Powerpak have the capabilities to remap the SRAM, needing only an adjustment to the appropriate file in the POWERPAK folder? There are lots of games that use the pre-MAD-1 method for SRAM mapping.

Posted: Wed Dec 14, 2011 10:46 am
by MottZilla
If there were other known games that had this problem maybe it'd be more likely a proper mapping file for the PowerPAK would be released. But this is the only game I know of that has this issue.

Posted: Sun Dec 18, 2011 10:11 am
by Eyedunno
Secret of Evermore has a similar issue, though it might not be exactly the same. It will load emulator/ripped saves, but it will not save correctly itself - all attempts to save result in file corruption.

Posted: Sun Dec 18, 2011 10:34 am
by MottZilla
Ah yes I recall someone bringing up Secret of Evermore. It must have to do with how PowerPAK maps SRAM.

Posted: Sun Dec 18, 2011 10:35 am
by Great Hierophant
Eyedunno wrote:Secret of Evermore has a similar issue, though it might not be exactly the same. It will load emulator/ripped saves, but it will not save correctly itself - all attempts to save result in file corruption.
I did not try using a save file from an emulator, I may do that.

While Ys3 is a SlowROM/LoROM game using a 74LS139 decoder, Secret of Evermore is a FastROM/HiROM game using a MAD-1 decoder.

Posted: Sun Dec 18, 2011 10:25 pm
by Overload
MottZilla wrote:Ah yes I recall someone bringing up Secret of Evermore. It must have to do with how PowerPAK maps SRAM.
I remember an issue with Secret of Evermore. I believe SRAM is corrupted if mapped from bank 0 instead of 20-3F.

Posted: Sun Dec 18, 2011 10:34 pm
by 3gengames
I remember people saying all saving on hi-rom is broken and has been.

Posted: Mon Dec 19, 2011 9:58 am
by MottZilla
Has anyone tried older versions of the PowerPak mappers then? I can't vouch for HiROM saving since the only game I've played recently that saves is LoROM. Except for my BS Zelda hack that uses my own saving code.

Posted: Mon Dec 19, 2011 5:14 pm
by Great Hierophant
3gengames wrote:I remember people saying all saving on hi-rom is broken and has been.
That would include Chrono Trigger, Final Fantasy III, all three Donkey Kong Countrys, Super Mario Kart, Suzuka 8 Hours, Breath of Fire II, Brandish, Civilization, Earthbound, Secret of Mana and lots of other games.

Posted: Mon Dec 19, 2011 6:32 pm
by MottZilla
Ah well I DID play through Secret of Mana not very long ago and had no problems saving. And I'm pretty certain that was with the same PowerPAK mapper files I have on it now. I think this issue is isolated to a few games that expect the memory to be accessible (or not accessible) at some non-standard range that most games don't use.

Update:
I just ran Ys-3 in a debugger and it accessed SRAM through bank 70 which I believe is standard but at $8000 within the bank which I believe is not standard. I believe generally it is at $6000 to $7FFF which may be the cause of the problems. The Powerpak is responding with open bus or ROM I guess.

If you found every instance of SRAM access and change it you could probably fix it. The only problem is atleast the debugger I have can't do range trapping. =(

One example:

Code: Select all

$17/B46B BF 20 80 70 LDA $708020,x($70:8021)
$17/B484 9F 00 80 70 STA $708000,x($70:8000)