diff options
Diffstat (limited to 'DuetPkg/BootSector/start.S')
-rw-r--r-- | DuetPkg/BootSector/start.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/DuetPkg/BootSector/start.S b/DuetPkg/BootSector/start.S index 706def4929..177e9ae82e 100644 --- a/DuetPkg/BootSector/start.S +++ b/DuetPkg/BootSector/start.S @@ -450,7 +450,7 @@ Empty8042Loop: # data
##############################################################################
- .align 0x2
+ .p2align 1
gdtr: .long GDT_END - GDT_BASE - 1 # GDT limit
.long 0 # (GDT base gets set above)
@@ -458,7 +458,7 @@ Empty8042Loop: # global descriptor table (GDT)
##############################################################################
- .align 0x2
+ .p2align 1
GDT_BASE:
# null descriptor
@@ -535,7 +535,7 @@ GDT_BASE: GDT_END:
- .align 0x2
+ .p2align 1
@@ -551,7 +551,7 @@ idtr: .long IDT_END - IDT_BASE - 1 # IDT limit ##############################################################################
#idt_tag db "IDT",0
- .align 0x2
+ .p2align 1
IDT_BASE:
# divide by zero (INT 0)
@@ -847,7 +847,7 @@ IDT_BASE: IDT_END:
- .align 0x2
+ .p2align 1
MemoryMapSize: .long 0
MemoryMap: .long 0,0,0,0,0,0,0,0
|