SummerCart64/fw/cpu/controller/main.c

10 lines
160 B
C
Raw Normal View History

2021-08-27 21:43:30 +02:00
#include "init.h"
#include "process.h"
2021-08-12 21:07:47 +02:00
2021-08-27 21:43:30 +02:00
__attribute__((naked)) void main (void) {
__asm__("la sp, __stack_pointer");
init();
process();
2021-08-12 21:07:47 +02:00
}