angelo
Joined: 29 Aug 2007 Posts: 168
|
Posted: Thu May 29, 2008 4:43 am Post subject: IRDA.PRX will not load in kernel mode. |
|
|
IRDA.PRX works fine when you call it in user mode, but has problems when loading in kernel mode!
I tried this to get some idea to the problem:
| Code: | SceUID mod = pspSdkLoadStartModule("flash0:kd/irda.prx", PSP_MEMORY_PARTITION_KERNEL);
if (mod < 0)
{
printf(" Error 0x%08X loading/starting IRDA.PRX.\n", mod);
sceKernelDelayThread(3*1000*1000);
sceKernelExitGame();
} |
That way it'll return an error if there was one. Unfortunatly it did:
Error 0x80010016 loading/starting IRDA.PRX.
According to Google that means:
| Quote: | | 0x80010016 = Invalid argument |
Does anybody know why?
It works fine when I force start IRDA.PRX in Game.txt!
Unfortunatly, that causes problems for some applications. Especially ZX81's latest ones. |
|