summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2016-05-30 18:51:58 -0700
committerLiming Gao <liming.gao@intel.com>2016-06-28 09:49:09 +0800
commitc3a324ff87ba491fb78382bbb017b522e3680a13 (patch)
tree6a57a183984fe6d2ff50cec16b26e5479e42aa35 /MdePkg
parent85b5a2e88176314165cc24b46574e3ca21df018d (diff)
downloadedk2-c3a324ff87ba491fb78382bbb017b522e3680a13.zip
edk2-c3a324ff87ba491fb78382bbb017b522e3680a13.tar.gz
edk2-c3a324ff87ba491fb78382bbb017b522e3680a13.tar.bz2
MdePkg BaseLib: Convert Ia32/Mwait.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert Ia32/Mwait.asm to Ia32/Mwait.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/Ia32/Mwait.nasm40
2 files changed, 42 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/BaseLib.inf b/MdePkg/Library/BaseLib/BaseLib.inf
index 5eb96d2..7deeb01 100644
--- a/MdePkg/Library/BaseLib/BaseLib.inf
+++ b/MdePkg/Library/BaseLib/BaseLib.inf
@@ -291,6 +291,7 @@
Ia32/ReadCr2.asm | INTEL
Ia32/ReadCr0.nasm| INTEL
Ia32/ReadCr0.asm | INTEL
+ Ia32/Mwait.nasm| INTEL
Ia32/Mwait.asm | INTEL
Ia32/Monitor.asm | INTEL
Ia32/ModU64x32.asm | INTEL
@@ -334,6 +335,7 @@
Ia32/EnablePaging64.S | GCC
Ia32/DisablePaging32.S | GCC
Ia32/EnablePaging32.S | GCC
+ Ia32/Mwait.nasm| GCC
Ia32/Mwait.S | GCC
Ia32/Monitor.S | GCC
Ia32/CpuIdEx.S | GCC
diff --git a/MdePkg/Library/BaseLib/Ia32/Mwait.nasm b/MdePkg/Library/BaseLib/Ia32/Mwait.nasm
new file mode 100644
index 0000000..704b569
--- /dev/null
+++ b/MdePkg/Library/BaseLib/Ia32/Mwait.nasm
@@ -0,0 +1,40 @@
+;------------------------------------------------------------------------------
+;
+; Copyright (c) 2006, 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:
+;
+; Mwait.Asm
+;
+; Abstract:
+;
+; AsmMwait function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; UINTN
+; EFIAPI
+; AsmMwait (
+; IN UINTN Eax,
+; IN UINTN Ecx
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(AsmMwait)
+ASM_PFX(AsmMwait):
+ mov eax, [esp + 4]
+ mov ecx, [esp + 8]
+ DB 0xf, 1, 0xc9 ; mwait
+ ret
+