artiq/soc/runtime/ksupport.c

17 lines
334 B
C
Raw Normal View History

void exception_handler(unsigned long vect, unsigned long *sp);
void exception_handler(unsigned long vect, unsigned long *sp)
{
/* TODO: report hardware exception to comm CPU */
for(;;);
}
extern void kmain(void);
int main(void);
int main(void)
{
kmain();
/* TODO: report end of kernel to comm CPU */
return 0;
}