Initialize Project

This commit is contained in:
Samuel Walker 2025-03-27 15:39:51 -06:00
commit fecc0948c9
3 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

4
CMakeLists.txt Normal file
View File

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

16
main.c Normal file
View File

@ -0,0 +1,16 @@
#include <stdio.h>
#include <tamtypes.h>
#include <sifrpc.h>
#include <debug.h>
#include <unistd.h>
int main() {
sceSifInitRpc(0);
init_scr();
scr_printf("test");
sleep(5);
return 0;
}