mirror of https://github.com/acidanthera/audk.git
33 lines
764 B
NASM
33 lines
764 B
NASM
;------------------------------------------------------------------------------
|
|
;
|
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
;
|
|
; Module Name:
|
|
;
|
|
; ReadGdtr.Asm
|
|
;
|
|
; Abstract:
|
|
;
|
|
; AsmReadGdtr function
|
|
;
|
|
; Notes:
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
|
|
DEFAULT REL
|
|
SECTION .text
|
|
|
|
;------------------------------------------------------------------------------
|
|
; VOID
|
|
; EFIAPI
|
|
; InternalX86ReadGdtr (
|
|
; OUT IA32_DESCRIPTOR *Gdtr
|
|
; );
|
|
;------------------------------------------------------------------------------
|
|
global ASM_PFX(InternalX86ReadGdtr)
|
|
ASM_PFX(InternalX86ReadGdtr):
|
|
sgdt [rcx]
|
|
ret
|
|
|