aboutsummaryrefslogtreecommitdiff
path: root/src/inc/timer.h
diff options
context:
space:
mode:
authorMarvin Borner2020-07-26 18:26:55 +0200
committerMarvin Borner2020-07-26 18:26:55 +0200
commit9a214359cc8c8f944825fa27aed188e0af5f8329 (patch)
treec67b9adad5d3bc9a8c14ee5176fa2738a726f3e5 /src/inc/timer.h
parent5860f8c0d690d430424a7b619558024691c71f69 (diff)
Added cpu timer
Well, it doesn't work *at all*. When I include these files with the Makefile everything crashes. I *think* this is due to the fact that the bootloader only handles direct ext2 pointer and the kernel is too big to fit into them. Therefore the kernel taps into the void as it tries to read some data an crashes. It could be something completely different though - let's see! (this will take some time ig)
Diffstat (limited to 'src/inc/timer.h')
-rw-r--r--src/inc/timer.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/inc/timer.h b/src/inc/timer.h
new file mode 100644
index 0000000..4b2bb8c
--- /dev/null
+++ b/src/inc/timer.h
@@ -0,0 +1,10 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef TIMER_H
+#define TIMER_H
+
+#include <def.h>
+
+void timer_install();
+
+#endif