diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-12 12:09:50 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-12 12:09:50 +0100 |
commit | f3c8821b0fad6c8bac9607859866aec896801bd7 (patch) | |
tree | 088aba4ebb465ba207aa550b8c645f0f873acb80 /Kernel | |
parent | c61f9eba61a7ec49e74026bf9c78a4e09ff1d4e3 (diff) | |
download | serenity-f3c8821b0fad6c8bac9607859866aec896801bd7.zip |
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.
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/Boot/boot.asm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |