Code: Select all
#define printf pspDebugScreenPrintf
.....
int main() {
pspDebugScreenInit();
SetupCallbacks();
printf("Hello SIO\n");
pspDebugSioInit();
pspDebugSioSetBaud(4800);
int i=1;
while (i==1) {
int count = pspDebugSioGetchar();;
if (count >= 0) printf("%c",count);
}
Code: Select all
/usr/local/pspdev/psp/sdk/lib/libpspdebug.a(sio.o): In function `pspDebugSioInit':
/tmp/pspdev/pspsdk/src/debug/sio.c:122: undefined reference to `sceHprmEnd'
Any ideas what I am doing wrong here?
thank you in advance,
DENIS