mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 12:34:33 +00:00
10 lines
107 B
C
10 lines
107 B
C
#ifndef __OS_H__
|
|
#define __OS_H__
|
|
|
|
#include "riscv.h"
|
|
#include "lib.h"
|
|
|
|
extern int os_main(void);
|
|
|
|
#endif
|