Files
mini-riscv-os/04-TimerInterrupt/timer.h
2021-11-09 10:32:07 +08:00

12 lines
181 B
C

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