#include "sys.h" // The linker ensures that section .init is first .section ".init","ax" .org 0 .globl _reset _reset: li sp,SRAM_SIZE j _start .org 0x10 .globl _irq _irq: j die // Nothing for now