summaryrefslogtreecommitdiff
path: root/kc/core/cpu
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2022-03-17 14:03:12 +0000
committerAda Christine <adachristine18@gmail.com>2022-03-17 14:03:12 +0000
commit65a111a543f49c645ec21ef44f289c29ccb27e8d (patch)
treebb5442a95ae6ea7632299da9c3ca74f2866b871c /kc/core/cpu
parent28ea7b987645e94566e9277e1c4086c58fa96225 (diff)
pulled out kprintf() and friends into lib/
Diffstat (limited to 'kc/core/cpu')
-rw-r--r--kc/core/cpu/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kc/core/cpu/cpu.c b/kc/core/cpu/cpu.c
index d33d8a4..f0e7844 100644
--- a/kc/core/cpu/cpu.c
+++ b/kc/core/cpu/cpu.c
@@ -37,7 +37,7 @@ uint64_t *get_tss_rsp0(void)
static void syscall_entry(void)
{
- kputs("system call\n");
+ kprintf("system call\n");
halt();
}