* Sync to recent trunk (r52563).
[reactos.git] / boot / freeldr / freeldr / arch / amd64 / stubs.S
1
2
3 #include <asm.inc>
4
5 EXTERN BootMain:PROC
6
7 .code64
8
9 /* 64 bit entry point */
10 PUBLIC mainCRTStartup
11 mainCRTStartup:
12 jmp BootMain
13
14 PUBLIC Int386
15 Int386:
16 ret
17
18 PUBLIC __lgdt
19 __lgdt:
20
21 PUBLIC __ltr
22 __ltr:
23
24 PUBLIC PxeCallApi
25 PxeCallApi:
26 .long 0
27
28 PUBLIC PageDirectoryStart
29 PageDirectoryStart:
30 .long 0
31
32 PUBLIC PageDirectoryEnd
33 PageDirectoryEnd:
34 .long 0
35
36 PUBLIC PnpBiosGetDeviceNode
37 PnpBiosGetDeviceNode:
38 .long 0
39
40 PUBLIC PnpBiosGetDeviceNodeCount
41 PnpBiosGetDeviceNodeCount:
42 .long 0
43
44 PUBLIC PnpBiosSupported
45 PnpBiosSupported:
46 .long 0
47
48 END