mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[FREELDR] Bootsector fix for CHS read on old BIOSes which lack INT 3e (#3078)
At line 263 a 'pop es' is missing before 'ret' in ReadCHS() function, just like in the ReadLBA() function. CORE-17178 Co-authored-by: Dmitry Borisov <di.sean@protonmail.com>
This commit is contained in:
parent
a54004893f
commit
a245c98fc6
1 changed files with 1 additions and 0 deletions
|
@ -260,6 +260,7 @@ ReadSectorsCHSLoop:
|
|||
|
||||
loop ReadSectorsCHSLoop // Read next sector
|
||||
|
||||
pop es
|
||||
ret
|
||||
|
||||
// Displays a disk error message
|
||||
|
|
Loading…
Reference in a new issue