Intellivision Lives italian cover |
So... What if You're not interested in playing these games on your Playstation 2 but want to try them on a different emulator?
Keep reading if You want to know more.
The game rom dumps are all packed into a single file named gameroms.rez, without any compression applied (which was to be expected: what would be the reason to compress games which reach a maximum of 48kb in size? :P).
The rez file has a footer at the bottom (beginning at offset 0x14E800) which lists every file included and the relative size (with an entry of 0x6C bytes for every game): sufficient information to split all the games back to separate files (in ITV format).
Thunder Castle, extracted from Intellivision Lives |
Here is my quick & dirty solution in C to split all the roms: GitLab repo
It builds fine with gcc 4.6.1 on a 64bit machine and it's tested on the italian PS2 version of Intellivision Lives... I bet it works on other versions too.
Once you build it (gcc sources.c -o binary), it simply takes the path of gameroms.rez and extracts the game in the current directory.
Have fun!
POST SCRIPTUM: I just checked the Wikipedia page about the Intellivision Lives! compilation. There is a list of all the available games in there, but some titles are listed as not available on Xbox or PS2 versions. Actually while most of the "missing" titles are really not present in the compilation, a few ones still have the rom image available (King of the Mountain or Land Battle for example) so You can play them once the data is extracted.
Hi Fabio! I wish you good luck for the new "twin" blog! (Everything seems work now)
ReplyDeleteI have this disc! I am a programmer but I have never programmed in C before. Any more advice or step by step info you can give me. I have the code. I pulled that file off the disc. I can run GCC in terminal so I have all the pieces to try it. I am not sure what the exact steps are to have the code process the ROMs file.
ReplyDeleteFirst, build the tool with GCC (see post for command line) eg. gcc extractor.c -o extractor.bin
ReplyDeleteThen execute the binary giving the path to the ROM package
Eg. ./extractor.bin /path/to/gamerom.rez
Great. Thanks. I will try it tonight.
DeleteAh, very interesting. I gave for granted that the package was identical for every version.
ReplyDeleteThanks for the info!
This worked great! But any idea where one could find the EXEC and GROM on the disc?
ReplyDeleteHello,
DeleteI don't have the disc at hand to check, but it could be embedded in the ps2 exec, or maybe reimplemented and thus not present in the original binary form.
The download link does not work, could you please reupload it?
DeleteDone, enjoy :)
Delete