ps2rom/rom/ee/ee_start.c

9 lines
145 B
C

#include "shared/sio.h"
#include "shared/attributes.h"
__noreturn void _ee_start() {
SIO_puts("EE: Hello World from Lily~\n");
while(1)
;
}