From 1f5c89d908268a0c11a6c49566c2efad4a069860 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 14 Sep 2020 20:45:13 +0200 Subject: Tracked down 12KiB bug --- boot/load.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'boot') diff --git a/boot/load.c b/boot/load.c index 2a77a0d..2bd6028 100644 --- a/boot/load.c +++ b/boot/load.c @@ -142,11 +142,12 @@ int main(void *data) if (entry) { serial_print("Loaded kernel!\n"); entry(data); - return 0; } else { serial_print("Couldn't find kernel!\n"); - return 1; } + while (1) { + }; + return 0; } u8 inb(u16 port) -- cgit v1.2.3