1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +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");
}