mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 12:34:33 +00:00
12 lines
158 B
C
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
|