 |
forums.ps2dev.org Homebrew PS2, PSP & PS3 Development Discussions
|
| View previous topic :: View next topic |
| Author |
Message |
radad
Joined: 19 May 2004 Posts: 246 Location: Melbourne, Australia
|
Posted: Tue Nov 23, 2004 9:02 am Post subject: LaunchElf and mcInit |
|
|
| When I launch mc_example from ps2sdk using LaunchElf the mcInit fails and returns -120. Any ideas on this? |
|
| Back to top |
|
 |
radad
Joined: 19 May 2004 Posts: 246 Location: Melbourne, Australia
|
Posted: Thu Nov 25, 2004 9:20 am Post subject: |
|
|
In mcInit at the line:
| Code: |
ret = SifCallRpc(&cdata, mcRpcCmd[mcType][MC_RPCCMD_INIT], 0, &mcCmd, 48, rdata, 12, 0, 0)
|
This passes ok and returns 0, however rdata contains all zeros so that this part fails:
| Code: |
POPDATA( int, UNCACHED_SEG((rdata+4)), ret, i);
if(ret < 0x205)
printf("libmc: mcserv is too old (%x)\n", ret);
|
and the memory card fails to initialize.
Any ideas on why this is happening? Is it because rom0:MCSERV is loaded instead of rom0:XMCSERV?
I definately load rom0:XMCSERV but rom0:MCSERV is already loaded by LaunchELF. Does loading rom0:XMCSERV overwrite rom0:MCSERV? Or does the loading of rom0:XMCSERV fail?
If it fails is there a way to unload rom0:MCSERV or even reset the PS2 so that no modules are loaded? |
|
| Back to top |
|
 |
ole
Joined: 08 May 2004 Posts: 92 Location: Czech Republic
|
Posted: Fri Nov 26, 2004 6:17 pm Post subject: |
|
|
Look here (how to reset iop): http://forums.ps2dev.org/viewtopic.php?t=13
edit:
or try reset like that:
| Code: | void resetIOP() {
SifInitRpc(0);
SifExitIopHeap();
SifLoadFileExit();
SifExitRpc();
SifIopReset("rom0:UDNL rom0:EELOADCNF",0);
while (!SifIopSync()) ;
SifInitRpc(0);
}
|
|
|
| Back to top |
|
 |
radad
Joined: 19 May 2004 Posts: 246 Location: Melbourne, Australia
|
Posted: Wed Dec 01, 2004 8:53 am Post subject: |
|
|
Got to try this out last night. It worked, thanks for your help.
Should this go into the ps2sdk given that most homebrew noobs, like me, will run their elfs from some launcher?
Or should it be the job of the launcher to return the PS2 to a virgin state before executing the elf? |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|