mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 12:34:33 +00:00
9 lines
163 B
C
9 lines
163 B
C
#ifndef __SYS_H__
|
|
#define __SYS_H__
|
|
|
|
#include "riscv.h"
|
|
extern void sys_timer();
|
|
extern void sys_switch(struct context *ctx_old, struct context *ctx_new);
|
|
|
|
#endif
|