diff options
author | Marvin Borner | 2020-09-14 20:45:13 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-14 20:45:13 +0200 |
commit | 1f5c89d908268a0c11a6c49566c2efad4a069860 (patch) | |
tree | 4384cb7c258bc52db74894c5683349272ece3dc5 /boot | |
parent | 096f9be4ac328ae39bd794c36a9a04ff68c2b844 (diff) |
Tracked down 12KiB bug
Diffstat (limited to 'boot')
-rw-r--r-- | boot/load.c | 5 |
1 files changed, 3 insertions, 2 deletions
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) |