From 345068d636e0096649afa0aaa2a98c2917827085 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Mon, 30 May 2016 18:52:00 -0700 Subject: [PATCH] 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 --- MdePkg/Library/BaseLib/BaseLib.inf | 2 ++ MdePkg/Library/BaseLib/X64/CpuPause.nasm | 37 ++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 MdePkg/Library/BaseLib/X64/CpuPause.nasm 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.
+; 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 + -- 2.39.2