summaryrefslogtreecommitdiff
path: root/kc/core/cpu
diff options
context:
space:
mode:
Diffstat (limited to 'kc/core/cpu')
-rw-r--r--kc/core/cpu/cpu.c3
-rw-r--r--kc/core/cpu/exceptions.h2
2 files changed, 3 insertions, 2 deletions
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 <stddef.h>
#include <stdint.h>
+#include <lib/kstdio.h>
+
#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 <lib/kstdio.h>
struct isr_context_param_regs
{