23 lines
315 B
C
23 lines
315 B
C
#include <tamtypes.h>
|
|
#include <sifrpc.h>
|
|
#include <debug.h>
|
|
#include <unistd.h>
|
|
|
|
#ifdef DEBUG
|
|
#define DEBUG_MSG(...) scr_printf(__VA_ARGS__)
|
|
#else
|
|
#define DEBUG_MSG(...)
|
|
#endif
|
|
|
|
|
|
|
|
int main() {
|
|
#ifdef DEBUG
|
|
sceSifInitRpc(0);
|
|
init_scr();
|
|
#endif
|
|
DEBUG_MSG("Hello PS2!!!\n");
|
|
sleep(5);
|
|
|
|
return 0;
|
|
} |