mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-23 06:19:16 +01:00
10 lines
160 B
C
10 lines
160 B
C
#include "init.h"
|
|
#include "process.h"
|
|
|
|
|
|
__attribute__((naked)) void main (void) {
|
|
__asm__("la sp, __stack_pointer");
|
|
init();
|
|
process();
|
|
}
|