summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2016-05-30 18:52:02 -0700
committerLiming Gao <liming.gao@intel.com>2016-06-28 09:49:53 +0800
commit8cf392dd88a17bdf7270536bde9255563d92ad98 (patch)
tree0ffa76ab8d24c35488abc928132c48546e7631f8 /MdePkg
parentf80180f9c7f52255278f238f55d3fdb03e432c4b (diff)
downloadedk2-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')
-rw-r--r--MdePkg/Library/BaseLib/BaseLib.inf2
-rw-r--r--MdePkg/Library/BaseLib/X64/WriteIdtr.nasm41
2 files changed, 43 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/BaseLib.inf b/MdePkg/Library/BaseLib/BaseLib.inf
index 6d1166e145..f2b8f4bf8b 100644
--- a/MdePkg/Library/BaseLib/BaseLib.inf
+++ b/MdePkg/Library/BaseLib/BaseLib.inf
@@ -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
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
+