diff --git a/CMakeLists.txt b/CMakeLists.txt index 162e404..a957779 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) \ No newline at end of file +add_executable(helloworld.elf main.c) +target_link_libraries(helloworld.elf -ldebug) \ No newline at end of file diff --git a/main.c b/main.c index 1abd0bb..11c1f12 100644 --- a/main.c +++ b/main.c @@ -9,7 +9,7 @@ int main() { sceSifInitRpc(0); init_scr(); - scr_printf("test"); + scr_printf("Hello PS2!"); sleep(5); return 0;