Using fakeboot?

Discuss the development of software, tools, libraries and anything else that helps make ps2dev happen.

Moderators: cheriff, Herben

Post Reply
vegito-93
Posts: 12
Joined: Sat Feb 18, 2006 10:36 am

Using fakeboot?

Post by vegito-93 »

k i am trying to load the PS2BROWSER wihtout reseting the iop.
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 &#40;ret < 0&#41;
	&#123;
	printf&#40;"SifExecModuleBuffer returned"&#41;;
		return -1;
		&#125;
		LoadExecPS2&#40;"", 0, NULL&#41;;

    return 0;
&#125;
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?
vegito-93
Posts: 12
Joined: Sat Feb 18, 2006 10:36 am

Post by vegito-93 »

anyone?
TyRaNiD
Posts: 907
Joined: Sun Jan 18, 2004 12:23 am

Post by TyRaNiD »

I am not even sure what fakeboot is supposed to do or where you got it from, so no :)
vegito-93
Posts: 12
Joined: Sat Feb 18, 2006 10:36 am

Post by vegito-93 »

i heard that fakeboot is used to trick the ee into thinking that the iop is already reset.
LionX
Posts: 61
Joined: Mon Dec 27, 2004 11:40 am

Post by LionX »

sit in a loop in your main. if you return you will end up in the browser
misfire
Posts: 110
Joined: Mon Sep 06, 2004 7:53 am
Location: Germany

Post by misfire »

TyRaNiD wrote:I am not even sure what fakeboot is supposed to do or where you got it from, so no :)
fakeboot can be found here:
http://www.cdvdmania.com.ru/main.html
Post Reply