You've already forked pico-loader
mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-09 16:28:35 -08:00
Initial commit
This commit is contained in:
14
arm7/source/header.cpp
Normal file
14
arm7/source/header.cpp
Normal 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
|
||||
};
|
||||
Reference in New Issue
Block a user