aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorMarvin Borner2020-09-14 20:45:13 +0200
committerMarvin Borner2020-09-14 20:45:13 +0200
commit1f5c89d908268a0c11a6c49566c2efad4a069860 (patch)
tree4384cb7c258bc52db74894c5683349272ece3dc5 /boot
parent096f9be4ac328ae39bd794c36a9a04ff68c2b844 (diff)
Tracked down 12KiB bug
Diffstat (limited to 'boot')
-rw-r--r--boot/load.c5
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)