summaryrefslogtreecommitdiff
path: root/code/fe310/eos/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'code/fe310/eos/timer.h')
-rw-r--r--code/fe310/eos/timer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/code/fe310/eos/timer.h b/code/fe310/eos/timer.h
new file mode 100644
index 0000000..929283b
--- /dev/null
+++ b/code/fe310/eos/timer.h
@@ -0,0 +1,7 @@
+#include <stdint.h>
+
+typedef uint32_t (*eos_timer_fptr_t) (void);
+
+void eos_timer_init(void);
+void eos_timer_set(uint32_t tick, unsigned char is_evt);
+void eos_timer_set_handler(eos_timer_fptr_t handler);