SummerCart64/fw/cpu/controller/main.c
Polprzewodnikowy b297bd3f25 yee
2021-08-27 21:43:30 +02:00

10 lines
160 B
C

#include "init.h"
#include "process.h"
__attribute__((naked)) void main (void) {
__asm__("la sp, __stack_pointer");
init();
process();
}