returning to browser without boot sequence

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

Moderators: cheriff, Herben

Post Reply
weltall
Posts: 310
Joined: Fri Feb 20, 2004 1:56 am
Contact:

returning to browser without boot sequence

Post by weltall »

i managed to return to the browser by executing the animation of the ps2 browser in a mine app. but i want to go directly to the browser screen so if a game is insert it boot up (also when i did all the boot sequence by mine program it can't load i games, i get playstation 2 and then black screen, like there is something wrong)
weltall
Posts: 310
Joined: Fri Feb 20, 2004 1:56 am
Contact:

Post by weltall »

also if i try the syscall i get errors in compile times and if i use
{ ExecOSD(0,NULL);
return;
}
it return to browser by executing all the anymation but if i have a disc inserted it tries to boot it (and show playstation 2) but then black screen. i use cdfs, so this can be a problem maybe eject should resolve, but i want to don't do this and go directly to where you see the mc and dvds inserted. thanks in advance for the help
mr bob
Posts: 15
Joined: Mon Jan 26, 2004 12:11 pm

Post by mr bob »

void ReturnToBrowser()
{
__asm__ __volatile__("

li $3, 0x04;
syscall;
nop;");
}

That should do it.
weltall
Posts: 310
Joined: Fri Feb 20, 2004 1:56 am
Contact:

Post by weltall »

it works but stays a lot of time with the screen black (20 30 secs a little to much, also it don't load games) there is any solution?
mr bob
Posts: 15
Joined: Mon Jan 26, 2004 12:11 pm

Post by mr bob »

Loading discs works for me. The black 20 seconds is a problem though. Not sure why. Do you have a HD installed?
weltall
Posts: 310
Joined: Fri Feb 20, 2004 1:56 am
Contact:

Post by weltall »

yes, and it's initialized with also cdfs, i tried hddpoweroff() but it don't do anything, and the problem of game loading is probably by libcdfs, but i don't know how to resolve these problems
Post Reply