From 798b1dc391f424868f5f4bac8937c191ed4716b8 Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Mon, 30 Jan 2023 00:05:53 +0000 Subject: headers moved around --- kc/core/cpu/cpu.c | 3 ++- kc/core/cpu/exceptions.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'kc/core/cpu') diff --git a/kc/core/cpu/cpu.c b/kc/core/cpu/cpu.c index f0e7844..a979336 100644 --- a/kc/core/cpu/cpu.c +++ b/kc/core/cpu/cpu.c @@ -1,6 +1,5 @@ #include "cpu.h" #include "exceptions.h" -#include "kprint.h" #include "panic.h" #include "msr.h" #include "task.h" @@ -10,6 +9,8 @@ #include #include +#include + #define GDT_ENTRIES 16 #define IDT_ENTRIES 256 diff --git a/kc/core/cpu/exceptions.h b/kc/core/cpu/exceptions.h index 8f7add2..7babb65 100644 --- a/kc/core/cpu/exceptions.h +++ b/kc/core/cpu/exceptions.h @@ -21,7 +21,7 @@ #ifndef __ASSEMBLER__ -#include "kprint.h" +#include struct isr_context_param_regs { -- cgit v1.3.1-1-g115d