mirror of https://github.com/FDOS/kernel.git
boot32, boot32lb: fix EDR-DOS incompatibility [fixes #119]
This commit is contained in:
parent
53d3fd556b
commit
42d3ae6aac
|
@ -273,7 +273,8 @@ cn_exit:
|
|||
|
||||
|
||||
boot_success:
|
||||
mov bl, [drive]
|
||||
mov dl, [drive] ; for Enhanced DR-DOS load
|
||||
mov bl, dl ; for FreeDOS load
|
||||
jmp far [loadsegoff_60]
|
||||
|
||||
; Convert cluster to the absolute sector
|
||||
|
|
|
@ -242,7 +242,9 @@ rk_walk_fat: pop eax
|
|||
|
||||
;-----------------------------------------------------------------------
|
||||
|
||||
boot_success: mov bl, [drive]
|
||||
boot_success:
|
||||
mov dl, [drive] ; for Enhanced DR-DOS load
|
||||
mov bl, dl ; for FreeDOS load
|
||||
jmp far [loadsegoff_60]
|
||||
|
||||
;-----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue