hello_ps2/main.c

24 lines
315 B
C

#include <stdio.h>
#include <tamtypes.h>
#include <sifrpc.h>
#include <debug.h>
#include <unistd.h>
void debug_msg(const char* msg) {
#ifdef DEBUG
scr_printf(msg);
#endif
}
int main() {
#ifdef DEBUG
sceSifInitRpc(0);
init_scr();
#endif
debug_msg("Hello PS2!!!\n");
sleep(5);
return 0;
}