summaryrefslogtreecommitdiff
path: root/arm7/lib/include/OS_tick.h
diff options
context:
space:
mode:
authorEgor Ananyin <ananinegor@gmail.com>2020-06-24 20:19:35 +0300
committerEgor Ananyin <ananinegor@gmail.com>2020-06-24 20:19:35 +0300
commitea1fc9a0c36fea36cc5eced2316b321735ed1aa5 (patch)
tree1f66b69d27f626151c57b852a9cc649eaf13c56d /arm7/lib/include/OS_tick.h
parentce09e79eb9ca2b384fb1c64f0946661b30ae75ea (diff)
OS_tick done
Diffstat (limited to 'arm7/lib/include/OS_tick.h')
-rw-r--r--arm7/lib/include/OS_tick.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arm7/lib/include/OS_tick.h b/arm7/lib/include/OS_tick.h
new file mode 100644
index 00000000..892e0499
--- /dev/null
+++ b/arm7/lib/include/OS_tick.h
@@ -0,0 +1,11 @@
+#ifndef POKEDIAMOND_OS_TICK_H
+#define POKEDIAMOND_OS_TICK_H
+
+#include "OS_timer.h"
+
+void OS_InitTick(void);
+u16 OS_IsTickAvailable(void);
+void OSi_CountUpTick(void);
+u64 OS_GetTick(void);
+
+#endif