Setup debug definition

This commit is contained in:
Samuel Walker 2025-03-27 17:20:57 -06:00
parent fe02532c9f
commit de285d7dbe
2 changed files with 11 additions and 2 deletions

View File

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

10
main.c
View File

@ -4,12 +4,20 @@
#include <debug.h>
#include <unistd.h>
void debug_msg(const char* msg) {
#ifdef DEBUG
scr_printf(msg);
#endif
}
int main() {
#ifdef DEBUG
sceSifInitRpc(0);
init_scr();
scr_printf("Hello PS2!");
#endif
debug_msg("Hello PS2!!!\n");
sleep(5);
return 0;