Files
mini-riscv-os/09-MemoryAllocator/include/sys.h
ianchen0119 0f79689961 add ch9
2021-08-07 22:19:30 +08:00

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