problem loading elfs
Posted: Sat Nov 11, 2006 9:07 pm
I am trying to run an application in kernel memory so that it is not wiped. I have tried loading this at 0x000a0000 as well as many other locations, but each time i try to run it it fails on ps2link and freezes the PS2 or if i try and run it from memory card it returns the red error screen.
even trying to compile something like this it fails[/code]
even trying to compile something like this it fails
Code: Select all
#include <tamtypes.h>
#include <stdio.h>
#include <kernel.h>
#include <sifrpc.h>
int main(void)
{
SifInitRpc(0);
printf("Welcome\n\n");
SifExitRpc();
SleepThread();
return 0;
}