summaryrefslogtreecommitdiff
path: root/arm7/lib/include/OS_tick.h
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2020-06-25 01:30:36 -0400
committerGitHub <noreply@github.com>2020-06-25 01:30:36 -0400
commit40c3f6e85a2d25d3d98b2cfdaf1dd6872bbb4a6d (patch)
treea3b78fd54d27e7ead3c0ec3ff7e62ca87909a8e0 /arm7/lib/include/OS_tick.h
parentce09e79eb9ca2b384fb1c64f0946661b30ae75ea (diff)
parente34791ca4a781fc37717ac0ea7c2ac9fd5d65c2e (diff)
Merge pull request #188 from Cleverking2003/master
OS_tick
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..7ee9544a
--- /dev/null
+++ b/arm7/lib/include/OS_tick.h
@@ -0,0 +1,11 @@
+#ifndef POKEDIAMOND_OS_TICK_H
+#define POKEDIAMOND_OS_TICK_H
+
+#include "nitro/OS_tick_shared.h"
+
+void OS_InitTick(void);
+u16 OS_IsTickAvailable(void);
+void OSi_CountUpTick(void);
+OSTick OS_GetTick(void);
+
+#endif