Files
mini-riscv-os/04-TimerInterrupt/os.h
2021-11-09 10:32:07 +08:00

12 lines
153 B
C

#ifndef __OS_H__
#define __OS_H__
#include "riscv.h"
#include "lib.h"
#include "timer.h"
extern void os_loop(void);
extern int os_main(void);
#endif