diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2016-05-30 18:52:02 -0700 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:49:53 +0800 |
commit | 8cf392dd88a17bdf7270536bde9255563d92ad98 (patch) | |
tree | 0ffa76ab8d24c35488abc928132c48546e7631f8 /MdePkg/Library/BaseLib/X64/WriteIdtr.nasm | |
parent | f80180f9c7f52255278f238f55d3fdb03e432c4b (diff) | |
download | edk2-platforms-8cf392dd88a17bdf7270536bde9255563d92ad98.tar.xz |
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>
Diffstat (limited to 'MdePkg/Library/BaseLib/X64/WriteIdtr.nasm')
-rw-r--r-- | MdePkg/Library/BaseLib/X64/WriteIdtr.nasm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/X64/WriteIdtr.nasm b/MdePkg/Library/BaseLib/X64/WriteIdtr.nasm new file mode 100644 index 0000000000..24601b386f --- /dev/null +++ b/MdePkg/Library/BaseLib/X64/WriteIdtr.nasm @@ -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
+
|