Files
mini-riscv-os/04-TimerInterrupt/timer.h
ccckmit 5eec97bef9 init
2020-11-14 11:31:33 +08:00

12 lines
158 B
C

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