1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-31 13:41:32 +00:00
8bitworkshop/presets/arm32/crt0.c

10 lines
121 B
C
Raw Normal View History

2023-12-27 20:24:42 +00:00
int main();
void _start() {
asm("mov sp, #0x100000"); // stack pointer
main();
asm(".long 0xdeadc0d3");
}