Just finish all routines except sub_00002EB0, which has no reference at all.
Reverse of TN HEN main function
Forum rules
Forum rule Nº 15 is strictly enforced in this subforum.
Forum rule Nº 15 is strictly enforced in this subforum.
Re: Reverse of TN HEN main function
@V thanks. fixed now.
Just finish all routines except sub_00002EB0, which has no reference at all.
Just finish all routines except sub_00002EB0, which has no reference at all.
Advertising
Re: Reverse of TN HEN main function
In PartitionCheck_Patched,shouldn't sceIoLseek have only 3 arguments?
Advertising
https://github.com/freddy-156
<@n00b81> FREDDY CUTTIES
<@n00b81> FREDDY CUTTIES
Re: Reverse of TN HEN main function
I refere to systemctrlforuserjigsaw wrote:@V thanks. fixed now.
Try to reverse tn-c systemctrl.prx probably is a uncomplited function for downgradejigsaw wrote: Just finish all routines except sub_00002EB0, which has no reference at all.
Re: Reverse of TN HEN main function
@V fixed again. thanks. so I can forget sub_00002EB0 and try to run it...will do it later.
@F lseek is updated with more arguments. check iofilemgr.prx then u'll see
@F lseek is updated with more arguments. check iofilemgr.prx then u'll see
Re: Reverse of TN HEN main function
Oh,I didn't knew that,thanksjigsaw wrote:@V fixed again. thanks. so I can forget sub_00002EB0 and try to run it...will do it later.
@F lseek is updated with more arguments. check iofilemgr.prx then u'll see
https://github.com/freddy-156
<@n00b81> FREDDY CUTTIES
<@n00b81> FREDDY CUTTIES
Re: Reverse of TN HEN main function
Bug, lines 956-958.
Corrected:
Not size provided by function, but gzip size from header
.
Code: Select all
r = hdr->comp_size;
memmove(buf, buf + 0x150, size);
*compressed_size = size;
Code: Select all
r = hdr->comp_size;
memmove(buf, buf + 0x150, r);
*compressed_size = r;
Re: Reverse of TN HEN main function
@D Yep thanks. fixed.
I've tried to cleaned up the code, remove as many as g_0000XXXX as possible, and find suitable names for all functions.
Now the question is how to use psp-packer. I applied "psp-packer.exe systemctrl.prx" but systemctrl.prx is not touched at all. Neither "psp-packer.exe systemctrl.prx output.data" works.
I'm not having Linux at hand so no way to debug psp-packer. Anybody has tried psp-packer on it?
I've tried to cleaned up the code, remove as many as g_0000XXXX as possible, and find suitable names for all functions.
Now the question is how to use psp-packer. I applied "psp-packer.exe systemctrl.prx" but systemctrl.prx is not touched at all. Neither "psp-packer.exe systemctrl.prx output.data" works.
I'm not having Linux at hand so no way to debug psp-packer. Anybody has tried psp-packer on it?
Re: Reverse of TN HEN main function
Works perfectly for me,on Linux.jigsaw wrote:@D Yep thanks. fixed.
I've tried to cleaned up the code, remove as many as g_0000XXXX as possible, and find suitable names for all functions.
Now the question is how to use psp-packer. I applied "psp-packer.exe systemctrl.prx" but systemctrl.prx is not touched at all. Neither "psp-packer.exe systemctrl.prx output.data" works.![]()
I'm not having Linux at hand so no way to debug psp-packer. Anybody has tried psp-packer on it?
https://github.com/freddy-156
<@n00b81> FREDDY CUTTIES
<@n00b81> FREDDY CUTTIES
Re: Reverse of TN HEN main function
Tried that on Windows without a problem, the file gets packed. Have you run psp-packer before? It requires cygz.dll which Windows should complain about if it is missing, but you never know I guess.jigsaw wrote:"psp-packer.exe systemctrl.prx"
Re: Reverse of TN HEN main function
maybe I got a broken or mismatch psp-packer? Could F or J upload your psp-packer here? thanks!
