Files
mini-riscv-os/04-TimerInterrupt/timer.h
ccckmit 05e15d2a17 Revert "simplify and test pass"
This reverts commit dd146959a6.
2021-11-09 10:30:38 +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