mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
parent
64987cf273
commit
71e13274ee
1 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ _Reboot:
|
|||
PUBLIC _ChainLoadBiosBootSectorCode
|
||||
_ChainLoadBiosBootSectorCode:
|
||||
/* Set the boot drive */
|
||||
mov dl, byte ptr [_FrldrBootDrive]
|
||||
mov dl, byte ptr ds:[_FrldrBootDrive]
|
||||
|
||||
/* Set the function ID */
|
||||
mov bx, FNID_ChainLoadBiosBootSectorCode
|
||||
|
@ -165,7 +165,7 @@ _ChainLoadBiosBootSectorCode:
|
|||
PUBLIC i386CallRealMode
|
||||
i386CallRealMode:
|
||||
/* Set continue address and switch to real mode */
|
||||
mov dword ptr [ContinueAddress], offset i386CallRealMode_return
|
||||
mov dword ptr ds:[ContinueAddress], offset i386CallRealMode_return
|
||||
jmp SwitchToReal
|
||||
i386CallRealMode_return:
|
||||
ret
|
||||
|
|
Loading…
Reference in a new issue