Files
mini-riscv-os/04-TimerInterrupt/os.h
ccckmit 05e15d2a17 Revert "simplify and test pass"
This reverts commit dd146959a6.
2021-11-09 10:30:38 +08:00

13 lines
176 B
C

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