Initial commit

This commit is contained in:
Gericom
2025-11-22 11:08:28 +01:00
commit 9cf3ffbfcf
358 changed files with 58350 additions and 0 deletions

14
arm7/source/header.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "common.h"
#include "header.h"
extern "C" void _start();
extern u8 __bss_start[];
extern u8 __bss_size[];
[[gnu::section(".crt0")]]
[[gnu::used]]
pload_header7_t gLoaderHeader
{
.entryPoint = (void*)&_start,
.apiVersion = PICO_LOADER_API_VERSION
};