mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[FREELDR] Use the OFF(x)
macro on realmode assembly files
This commit is contained in:
parent
9c5efed7da
commit
afb96acfdd
2 changed files with 2 additions and 6 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue