diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2016-05-30 18:52:00 -0700 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:49:31 +0800 |
commit | 345068d636e0096649afa0aaa2a98c2917827085 (patch) | |
tree | 1870730dd1cc1a1ae218d26e3b5a28144ffd0798 | |
parent | 050a8bf19801409b3da4a9caea51383f289aae6a (diff) | |
download | edk2-platforms-345068d636e0096649afa0aaa2a98c2917827085.tar.xz |
MdePkg BaseLib: Convert X64/CpuPause.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/CpuPause.asm to X64/CpuPause.nasm
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
-rw-r--r-- | MdePkg/Library/BaseLib/BaseLib.inf | 2 | ||||
-rw-r--r-- | MdePkg/Library/BaseLib/X64/CpuPause.nasm | 37 |
2 files changed, 39 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/BaseLib.inf b/MdePkg/Library/BaseLib/BaseLib.inf index 26f6b106a4..c5f45ee3bb 100644 --- a/MdePkg/Library/BaseLib/BaseLib.inf +++ b/MdePkg/Library/BaseLib/BaseLib.inf @@ -449,6 +449,7 @@ X64/ReadMsr64.c | MSFT
X64/RdRand.nasm| MSFT
X64/RdRand.asm | MSFT
+ X64/CpuPause.nasm| MSFT
X64/CpuPause.asm | MSFT
X64/EnableDisableInterrupts.asm | MSFT
X64/DisableInterrupts.asm | MSFT
@@ -523,6 +524,7 @@ X64/ReadMsr64.asm | INTEL
X64/RdRand.nasm| INTEL
X64/RdRand.asm | INTEL
+ X64/CpuPause.nasm| INTEL
X64/CpuPause.asm | INTEL
X64/EnableDisableInterrupts.asm | INTEL
X64/DisableInterrupts.asm | INTEL
diff --git a/MdePkg/Library/BaseLib/X64/CpuPause.nasm b/MdePkg/Library/BaseLib/X64/CpuPause.nasm new file mode 100644 index 0000000000..ac980e3f42 --- /dev/null +++ b/MdePkg/Library/BaseLib/X64/CpuPause.nasm @@ -0,0 +1,37 @@ +;------------------------------------------------------------------------------ ;
+; 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:
+;
+; CpuPause.Asm
+;
+; Abstract:
+;
+; CpuPause function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ DEFAULT REL
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; VOID
+; EFIAPI
+; CpuPause (
+; VOID
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(CpuPause)
+ASM_PFX(CpuPause):
+ pause
+ ret
+
|