8bitworkshop/presets/arm32/crt0.c

10 lines
121 B
C

int main();
void _start() {
asm("mov sp, #0x100000"); // stack pointer
main();
asm(".long 0xdeadc0d3");
}