summaryrefslogtreecommitdiff
path: root/boot/mbr.asm
diff options
context:
space:
mode:
Diffstat (limited to 'boot/mbr.asm')
-rw-r--r--boot/mbr.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/mbr.asm b/boot/mbr.asm
index 9076915..45cfd85 100644
--- a/boot/mbr.asm
+++ b/boot/mbr.asm
@@ -106,9 +106,9 @@ boot_16:
;
; ;Load the KERNEL (52 sectors starting at sector 2)
mov bx,KERNEL_OFFSET
- mov dh, 52
+ mov dh, 52 ; for lba mode this is hardcoded anyway
mov dl, [BOOT_DRIVE]
- call disk_load
+ call disk_load_16
;
; ;get memory map from bios before we enter 32 bit protected mode