diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-08-31 16:50:46 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-08-31 16:50:46 +0200 |
| commit | 594279ba194f5327ac120a09360065717709d468 (patch) | |
| tree | efbf2cd61c1f88e6d49c63710e748f973d691f83 /boot/mbr.asm | |
| parent | 07795ca0c0719fe94fc06c43671e51c1cf60023d (diff) | |
improved comments and label for disk_load_16
Diffstat (limited to 'boot/mbr.asm')
| -rw-r--r-- | boot/mbr.asm | 4 |
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 |
