| View previous topic :: View next topic |
| Author |
Message |
fergie4000
Joined: 19 Jan 2007 Posts: 25
|
Posted: Sun Apr 22, 2007 12:42 am Post subject: Execute UMD |
|
|
How can I get the PSP to launch a UMD Game from homebrew? I have tried all the samples. I think I am doing everything right. But the PSP just crashes.
| Code: | int i;
i = sceUmdCheckMedium(0);
if(i == 0)
{
sceUmdWaitDriveStat(UMD_WAITFORDISC);
}
sceUmdActivate(1, "disc0:");
sceUmdWaitDriveStat(UMD_WAITFORINIT);
sceKernelLoadExecVSHDisc(PATH, NULL); |
Should that work? Or am I missing something? Thanks. |
|
| Back to top |
|
 |
SWE_PsYcHo
Joined: 27 Jan 2007 Posts: 12
|
Posted: Sun Jul 01, 2007 10:31 pm Post subject: |
|
|
i need help on this aswell... _________________ IAM A NEWBIE! ^^ |
|
| Back to top |
|
 |
F@T3oYCG
Joined: 06 Jul 2007 Posts: 7 Location: EUROPE, ENGLAND, WIDNESS
|
Posted: Wed Jul 11, 2007 1:38 am Post subject: |
|
|
| Code: |
int i;
i = sceUmdCheckMedium(0);
if(i == 0)
{
sceUmdWaitDriveStat(UMD_WAITFORDISC);
}
sceUmdActivate(1, "[b]disc0:/[/b]");
sceUmdWaitDriveStat(UMD_WAITFORINIT);
sceKernelLoadExecVSHDisc(PATH, NULL);
|
_________________ -----F@T3oYCG-----
E-MAIL: fatboycg@hotmail.co.uk
PSP FAT VERSION HISTORY:
2.00 --> 2.50 --> 1.50 --> 2.00 --> 1.50 --> 3.40 OE-A --> 3.52 M33-4
PSP SLIM VERSION HISTORY:
3.60 -- 3.60 M33 --> 3.71 M33 --> 3.72 M33-2 --> 3.71 M33-4 |
|
| Back to top |
|
 |
|