mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 09:10:56 +00:00
[FREELDR]
Fix amd64 build svn path=/trunk/; revision=58595
This commit is contained in:
parent
e66df55a54
commit
3f4e9dfa3d
2 changed files with 10 additions and 0 deletions
|
@ -135,6 +135,7 @@ elseif(ARCH STREQUAL "amd64")
|
|||
arch/i386/hwapm.c
|
||||
arch/i386/hwdisk.c
|
||||
arch/i386/hwpci.c
|
||||
arch/i386/i386bug.c
|
||||
arch/i386/i386rtl.c
|
||||
arch/i386/i386disk.c
|
||||
arch/i386/i386vid.c
|
||||
|
|
|
@ -52,6 +52,15 @@ stop:
|
|||
nop
|
||||
|
||||
|
||||
PUBLIC Reboot
|
||||
Reboot:
|
||||
/* Set the function ID */
|
||||
mov bx, FNID_Reboot
|
||||
|
||||
/* Switch to real mode (We don't return) */
|
||||
jmp SwitchToReal
|
||||
|
||||
|
||||
/* Internal function for realmode calls
|
||||
* bx must be set to the ID of the realmode function to call. */
|
||||
PUBLIC CallRealMode
|
||||
|
|
Loading…
Reference in a new issue