Hello world

This commit is contained in:
Samuel Walker 2025-03-27 15:51:24 -06:00
parent fecc0948c9
commit fe02532c9f
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
cmake_minimum_required(VERSION 3.10)
set(MAKE_TOOLCHAIN_FILE $PS2SDK/ps2dev.cmake)
project(helloworld)
add_executable(helloworld.elf main.c)
add_executable(helloworld.elf main.c)
target_link_libraries(helloworld.elf -ldebug)

2
main.c
View File

@ -9,7 +9,7 @@
int main() {
sceSifInitRpc(0);
init_scr();
scr_printf("test");
scr_printf("Hello PS2!");
sleep(5);
return 0;