From f3c8821b0fad6c8bac9607859866aec896801bd7 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 12 Feb 2019 12:09:50 +0100 Subject: [PATCH] Bootloader: Bump sector count once again. This is starting to get cramped. I wonder how much longer this hilarious frankenloader will be able to boot us. --- Kernel/Boot/boot.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Boot/boot.asm b/Kernel/Boot/boot.asm index 76cc7da19a..bdcfcb7a74 100755 --- a/Kernel/Boot/boot.asm +++ b/Kernel/Boot/boot.asm @@ -50,7 +50,7 @@ boot: inc word [cur_lba] mov cx, word [cur_lba] - cmp cx, 600 + cmp cx, 900 jz .sector_loop_end mov bx, es