mirror of https://github.com/acidanthera/audk.git
MdePkg BaseLib: Convert X64/WriteIdtr.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert X64/WriteIdtr.asm to X64/WriteIdtr.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
f80180f9c7
commit
8cf392dd88
|
@ -513,6 +513,7 @@
|
|||
X64/WriteLdtr.asm | MSFT
|
||||
X64/ReadLdtr.nasm| MSFT
|
||||
X64/ReadLdtr.asm | MSFT
|
||||
X64/WriteIdtr.nasm| MSFT
|
||||
X64/WriteIdtr.asm | MSFT
|
||||
X64/ReadIdtr.asm | MSFT
|
||||
X64/WriteGdtr.asm | MSFT
|
||||
|
@ -619,6 +620,7 @@
|
|||
X64/WriteLdtr.asm | INTEL
|
||||
X64/ReadLdtr.nasm| INTEL
|
||||
X64/ReadLdtr.asm | INTEL
|
||||
X64/WriteIdtr.nasm| INTEL
|
||||
X64/WriteIdtr.asm | INTEL
|
||||
X64/ReadIdtr.asm | INTEL
|
||||
X64/WriteGdtr.asm | INTEL
|
||||
|
|
|
@ -0,0 +1,41 @@
|
|||
;------------------------------------------------------------------------------
|
||||
;
|
||||
; Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
; This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
; which accompanies this distribution. The full text of the license may be found at
|
||||
; http://opensource.org/licenses/bsd-license.php.
|
||||
;
|
||||
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
;
|
||||
; Module Name:
|
||||
;
|
||||
; WriteIdtr.Asm
|
||||
;
|
||||
; Abstract:
|
||||
;
|
||||
; AsmWriteIdtr function
|
||||
;
|
||||
; Notes:
|
||||
;
|
||||
;------------------------------------------------------------------------------
|
||||
|
||||
DEFAULT REL
|
||||
SECTION .text
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; VOID
|
||||
; EFIAPI
|
||||
; InternalX86WriteIdtr (
|
||||
; IN CONST IA32_DESCRIPTOR *Idtr
|
||||
; );
|
||||
;------------------------------------------------------------------------------
|
||||
global ASM_PFX(InternalX86WriteIdtr)
|
||||
ASM_PFX(InternalX86WriteIdtr):
|
||||
pushfq
|
||||
cli
|
||||
lidt [rcx]
|
||||
popfq
|
||||
ret
|
||||
|
Loading…
Reference in New Issue