[FREELDR] Use the OFF(x) macro on realmode assembly files

This commit is contained in:
Daniel Victor 2025-03-01 17:01:53 -03:00 committed by Hermès BÉLUSCA - MAÏTO
parent 9c5efed7da
commit afb96acfdd
2 changed files with 2 additions and 6 deletions

View file

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

View file

@ -191,7 +191,7 @@ gdt:
/* GDT table pointer */
gdtptr:
.word HEX(27) /* Limit */
.word gdt, 0 /* Base Address */
.long OFF(gdt) /* Base Address */
/* Real-mode IDT pointer */
rmode_idtptr: