[FREELDR]

Fix amd64 build

svn path=/trunk/; revision=58595
This commit is contained in:
Timo Kreuzer 2013-03-23 21:20:00 +00:00
parent e66df55a54
commit 3f4e9dfa3d
2 changed files with 10 additions and 0 deletions

View file

@ -135,6 +135,7 @@ elseif(ARCH STREQUAL "amd64")
arch/i386/hwapm.c arch/i386/hwapm.c
arch/i386/hwdisk.c arch/i386/hwdisk.c
arch/i386/hwpci.c arch/i386/hwpci.c
arch/i386/i386bug.c
arch/i386/i386rtl.c arch/i386/i386rtl.c
arch/i386/i386disk.c arch/i386/i386disk.c
arch/i386/i386vid.c arch/i386/i386vid.c

View file

@ -52,6 +52,15 @@ stop:
nop 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 /* Internal function for realmode calls
* bx must be set to the ID of the realmode function to call. */ * bx must be set to the ID of the realmode function to call. */
PUBLIC CallRealMode PUBLIC CallRealMode