Using fakeboot?
Posted: Thu Mar 30, 2006 9:04 am
k i am trying to load the PS2BROWSER wihtout reseting the iop.
I put this in my elf:
It dosen't return -1 but it tries to load the PS2BROWSER.
For some reason, it turns into a blank black screen. What did i do wrong?
I put this in my elf:
Code: Select all
int main()
{
extern u8 *fakeboot_irx;
extern int size_fakeboot_irx;
int ret;
SifExecModuleBuffer(&fakeboot_irx, size_fakeboot_irx, 0, NULL, &ret);
if (ret < 0)
{
printf("SifExecModuleBuffer returned");
return -1;
}
LoadExecPS2("", 0, NULL);
return 0;
}
For some reason, it turns into a blank black screen. What did i do wrong?