Change final bootsector jump to be a near jump
This commit changes the final jump from the bootsector to the second stage (the partition which gets loaded completely) to be a near jump. That's important to keep consistency with protected mode.
This commit is contained in:
parent
44ca45e8f1
commit
a72a41c3ac
|
@ -180,7 +180,7 @@ load_partition:
|
||||||
|
|
||||||
|
|
||||||
jump_to_partition:
|
jump_to_partition:
|
||||||
jmp 0x0a00:0x0000
|
jmp 0xa000
|
||||||
cli
|
cli
|
||||||
hlt
|
hlt
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue