mirror of https://github.com/acidanthera/audk.git
DuetPkg BootSector: fix a bug in st32_64.S that the size for GDTR.limit is wrong.
Signed-off-by: rsun3 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12934 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
9a8e70ce6c
commit
e9a9efb8e5
|
@ -601,7 +601,7 @@ Empty8042Loop:
|
|||
|
||||
.p2align 1
|
||||
|
||||
gdtr: .long GDT_END - GDT_BASE - 1 # GDT limit
|
||||
gdtr: .word GDT_END - GDT_BASE - 1 # GDT limit
|
||||
.long 0 # (GDT base gets set above)
|
||||
##############################################################################
|
||||
# global descriptor table (GDT)
|
||||
|
|
Loading…
Reference in New Issue