]> git.dujemihanovic.xyz Git - nameless-os.git/blobdiff - boot/x86/boot.s
Fix keyboard interrupts
[nameless-os.git] / boot / x86 / boot.s
index 572ef74453e99d3efb870ac590d636ed038d7dfa..a7fe3c31ff1fb0f6cedf9a5fdd39f2718643dcac 100644 (file)
@@ -15,7 +15,7 @@ KERNEL_OFFSET equ 1000h ; where we will load our kernel
        jc reset_error ; halt if controller reset fails
 
        mov ah, 2 ; instruct BIOS's interrupt 13h to read sectors
-       mov al, 10 ; load 10 sectors, might be excessive (for now) but it's still good to do so
+       mov al, 30 ; load 30 sectors, might be excessive (for now) but it's still good to do so
        xor ch, ch ; read from 1st cylinder
        mov cl, 2 ; start reading from 2nd sector, right after the boot sector
        xor dh, dh ; read from 1st head