diff options
Diffstat (limited to 'kernel/drivers/timer.c')
-rw-r--r-- | kernel/drivers/timer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/drivers/timer.c b/kernel/drivers/timer.c index c586088..3ddc229 100644 --- a/kernel/drivers/timer.c +++ b/kernel/drivers/timer.c @@ -1,13 +1,13 @@ // MIT License, Copyright (c) 2020 Marvin Borner -#include <drivers/cpu.h> #include <def.h> +#include <drivers/cpu.h> #include <drivers/interrupts.h> +#include <drivers/rtc.h> +#include <drivers/timer.h> #include <io.h> #include <mem.h> #include <proc.h> -#include <drivers/rtc.h> -#include <drivers/timer.h> static u32 timer_ticks = 0; PROTECTED static u8 call_scheduler = 0; |