src/apps/common/start.c (view raw)
1 2 3 4 5 6 7 8 9 10 11
#include "assembly.h" #include <stdint.h> extern void main(void); int _start(char *args) { main(); while(1); }