[FREELDR/x64] Fix MSVC x64 boot

This commit is contained in:
Hervé Poussineau 2021-02-22 15:15:18 +01:00
parent c6730a4a87
commit c8c9a70461

View file

@ -120,7 +120,11 @@ gdt:
/* GDT table pointer */
gdtptr:
.word HEX(37) /* Limit */
#ifdef _USE_ML
.long offset gdt /* Base Address */
#else
.long gdt /* Base Address */
#endif
CheckFor64BitSupport: