aboutsummaryrefslogblamecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/ReadGdtr.nasm
blob: 20dc3ed62807d14836c3babf528560381335fe52 (plain) (tree)
1
2
3
4


                                                                               
                                              



























                                                                               
;------------------------------------------------------------------------------
;
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
; Module Name:
;
;   ReadGdtr.Asm
;
; Abstract:
;
;   AsmReadGdtr function
;
; Notes:
;
;------------------------------------------------------------------------------

    SECTION .text

;------------------------------------------------------------------------------
; VOID
; EFIAPI
; InternalX86ReadGdtr (
;   OUT IA32_DESCRIPTOR  *Gdtr
;   );
;------------------------------------------------------------------------------
global ASM_PFX(InternalX86ReadGdtr)
ASM_PFX(InternalX86ReadGdtr):
    mov     eax, [esp + 4]
    sgdt    [eax]
    ret