mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 09:50:43 +00:00
[FREELDR/x64] Fix MSVC x64 boot
This commit is contained in:
parent
c6730a4a87
commit
c8c9a70461
1 changed files with 4 additions and 0 deletions
|
@ -120,7 +120,11 @@ gdt:
|
||||||
/* GDT table pointer */
|
/* GDT table pointer */
|
||||||
gdtptr:
|
gdtptr:
|
||||||
.word HEX(37) /* Limit */
|
.word HEX(37) /* Limit */
|
||||||
|
#ifdef _USE_ML
|
||||||
|
.long offset gdt /* Base Address */
|
||||||
|
#else
|
||||||
.long gdt /* Base Address */
|
.long gdt /* Base Address */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
CheckFor64BitSupport:
|
CheckFor64BitSupport:
|
||||||
|
|
Loading…
Reference in a new issue