summaryrefslogtreecommitdiff
path: root/src/stem/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stem/timer.h')
-rw-r--r--src/stem/timer.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stem/timer.h b/src/stem/timer.h
new file mode 100644
index 0000000..3ed3009
--- /dev/null
+++ b/src/stem/timer.h
@@ -0,0 +1,10 @@
+#ifndef DEF_TIMER_H
+#define DEF_TIMER_H
+
+#include "types.h"
+
+void timer_init(uint32_t frequency);
+uint32_t timer_time(); //Returns miliseconds (approximate) since computer started
+uint32_t timer_uptime(); //Same thing in seconds
+
+#endif