You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just want to state for others trying to dump their PAL PIF that I had to do some manual modifications to the dumped SRAM.
While it's true that the PIF ROM is 0x7c0 bytes long, just truncating it there won't give you the file cen64 is looking for - you need some tailing data to get to 0x800 bytes. There are two ways of getting there with the dump you have:
Option 1: Truncate at offset 0x7ff yielding a 0x800 bytes long binary. Then replace the 15 bytes starting at offset 0x7c0 with 0x00 bytes.
Option 2: Truncate up to and including byte 0x7bf yielding a 0x7c0 byte file which is the PIF ROM. Then append the following 64 bytes to get to a total of 0x800 bytes:
Doing either of the two should leave you with a file with SHA1 46cae59d31f9298b93f3380879454fcef54ee6cc which cen64 will accept as a proper PAL PIF ROM.
The text was updated successfully, but these errors were encountered:
I just want to state for others trying to dump their PAL PIF that I had to do some manual modifications to the dumped SRAM.
While it's true that the PIF ROM is
0x7c0
bytes long, just truncating it there won't give you the file cen64 is looking for - you need some tailing data to get to0x800
bytes. There are two ways of getting there with the dump you have:Option 1: Truncate at offset
0x7ff
yielding a0x800
bytes long binary. Then replace the 15 bytes starting at offset0x7c0
with0x00
bytes.Option 2: Truncate up to and including byte
0x7bf
yielding a0x7c0
byte file which is the PIF ROM. Then append the following 64 bytes to get to a total of0x800
bytes:00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 3F 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Doing either of the two should leave you with a file with SHA1
46cae59d31f9298b93f3380879454fcef54ee6cc
which cen64 will accept as a proper PAL PIF ROM.The text was updated successfully, but these errors were encountered: