From 9a214359cc8c8f944825fa27aed188e0af5f8329 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 26 Jul 2020 18:26:55 +0200 Subject: 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) --- src/inc/timer.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/inc/timer.h (limited to 'src/inc') 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 + +void timer_install(); + +#endif -- cgit v1.2.3