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

13 lines
176 B
C

#ifndef __TIMER_H__
#define __TIMER_H__
#include "riscv.h"
#include "sys.h"
#include "lib.h"
#include "task.h"
extern void timer_handler();
extern void timer_init();
#endif