Files
neulacpu/laos/include/kernel.h
2023-05-21 00:48:04 +08:00

11 lines
145 B
C

#include "defs.h"
#ifndef KERNEL_H__
#define KERNEL_H__
void _entry() __attribute__ ((section (".entry")));
void start();
void main();
#endif