compress/encrypt prx
compress/encrypt prx
I have elf file and I need to compress it to prx. how to do that?
Last edited by hotter on Tue Jun 09, 2009 3:34 pm, edited 1 time in total.
Pragramming with:
Microsoft Visual C 2008 + pspsdk MINPSPW 0.8.10
Microsoft Visual C 2008 + pspsdk MINPSPW 0.8.10
Re: compress prx
addhotter wrote:I have elf file and I need to compress it to prx. how to do that?
BUILD_PRX=1
to your makefile
Code: Select all
int main(){
SetupCallbacks();
makeNiceGame();
sceKernelExitGame();
}
Sry for not very clear question... I mean I want to compress and encode prx like some others do. Now when I open my prx in hex editor I see ".Elf" at the bigining and all strings are editable... so I want to make it to "~PSP". I think its the same as firmwares prx'es are compresed and encripted. maybe now I make a point? can I do that with PSPPacker?
Pragramming with:
Microsoft Visual C 2008 + pspsdk MINPSPW 0.8.10
Microsoft Visual C 2008 + pspsdk MINPSPW 0.8.10
First of all it SHOULD be a .prx file NOT .elf. You must build with BUILD_PRX = 1
On Windows, just drag your .prx on top of psp-packer.exe. The file will be compressed. It will have ~PSP as first 4 bytes.
Also, compressed kernel PRX only works on 3.71M33-3 and above.
Compressed user PRX only works on 4.01M33 and above.
On Windows, just drag your .prx on top of psp-packer.exe. The file will be compressed. It will have ~PSP as first 4 bytes.
Also, compressed kernel PRX only works on 3.71M33-3 and above.
Compressed user PRX only works on 4.01M33 and above.
Yes, I did that with prx.Torch wrote:First of all it SHOULD be a .prx file NOT .elf. You must build with BUILD_PRX = 1
The file now is smaller, but the first 4 bytes is still ".elf".Torch wrote:On Windows, just drag your .prx on top of psp-packer.exe. The file will be compressed. It will have ~PSP as first 4 bytes
I am using PSP slim 5.00M33-6 and PSPPacker v0.2.Torch wrote:Also, compressed kernel PRX only works on 3.71M33-3 and above.
Compressed user PRX only works on 4.01M33 and above.
Pragramming with:
Microsoft Visual C 2008 + pspsdk MINPSPW 0.8.10
Microsoft Visual C 2008 + pspsdk MINPSPW 0.8.10