21 lines
566 B
C
21 lines
566 B
C
#include <pspkernel.h>
|
|
#include <pspdebug.h>
|
|
|
|
PSP_MODULE_INFO("LudariumFixture", PSP_MODULE_USER, 1, 0);
|
|
PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER);
|
|
|
|
int main(void)
|
|
{
|
|
pspDebugScreenInit();
|
|
pspDebugScreenSetBackColor(0x00302010);
|
|
pspDebugScreenSetTextColor(0x00ffffff);
|
|
pspDebugScreenClear();
|
|
pspDebugScreenSetXY(8, 10);
|
|
pspDebugScreenPrintf("Ludarium PSP release fixture\n");
|
|
pspDebugScreenSetXY(8, 12);
|
|
pspDebugScreenPrintf("Original open homebrew - no firmware or game data");
|
|
|
|
for (;;)
|
|
sceKernelDelayThread(1000000);
|
|
}
|