mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 04:24:33 +00:00
12 lines
153 B
C
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
|