mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-10 08:29:29 +01:00
14 lines
267 B
C++
14 lines
267 B
C++
#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
|
|
}; |