diff options
author | Marvin Borner | 2021-05-20 20:41:24 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 20:41:24 +0200 |
commit | 298aaf63f15350e6248d5a96e8c6a63b0ec93e0f (patch) | |
tree | 952331f841b4d02d0b7189da716648df5cdb4d8e /kernel/drivers/timer.c | |
parent | b22346a9b830b642e684e13cf4946d8ef8d8e1ca (diff) |
Major restructuring
Diffstat (limited to 'kernel/drivers/timer.c')
-rw-r--r-- | kernel/drivers/timer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/drivers/timer.c b/kernel/drivers/timer.c index 176b499..c586088 100644 --- a/kernel/drivers/timer.c +++ b/kernel/drivers/timer.c @@ -1,13 +1,13 @@ // MIT License, Copyright (c) 2020 Marvin Borner -#include <cpu.h> +#include <drivers/cpu.h> #include <def.h> -#include <interrupts.h> +#include <drivers/interrupts.h> #include <io.h> #include <mem.h> #include <proc.h> -#include <rtc.h> -#include <timer.h> +#include <drivers/rtc.h> +#include <drivers/timer.h> static u32 timer_ticks = 0; PROTECTED static u8 call_scheduler = 0; |