From fe02532c9fde0d563a0d9c699e013795f1772554 Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Thu, 27 Mar 2025 15:51:24 -0600 Subject: [PATCH] Hello world --- CMakeLists.txt | 3 ++- main.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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;