diff options
| author | Ada Christine <adachristine18@gmail.com> | 2026-05-26 21:32:27 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2026-05-26 21:32:27 +0000 |
| commit | a10aabfcd52f702057316018cd7847ab2bfe4aa1 (patch) | |
| tree | cc4652d2b602798934e8a48b4939cfb20eda1989 /kc/core/kc_main.c | |
| parent | 90c29fdde317c39384011a6ba97077c138f13ad6 (diff) | |
we're bringing kjarna back and not doing the crazy stuff with trying to have task management during efi. that was a bit extra.kjarna
Diffstat (limited to 'kc/core/kc_main.c')
| -rw-r--r-- | kc/core/kc_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kc/core/kc_main.c b/kc/core/kc_main.c index 9a84727..4f70d00 100644 --- a/kc/core/kc_main.c +++ b/kc/core/kc_main.c @@ -10,7 +10,7 @@ #include "i8042.h" #include <kernel/entry.h> -#include <lib/kstdio.h> +#include <libc/stdio.h> #include <stdbool.h> #include <stddef.h> @@ -27,7 +27,7 @@ unsigned long kc_main(struct kc_boot_data *data) cpu_init(); serial_init(); video_init(); - kprintf("sophia starting, boot data %#lx\n", boot_data); + printf("sophia starting, boot data %#lx\n", boot_data); memory_init(); pic8259_init(); pit8253_timer_source.init(); |
