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>
diff --git a/MdePkg/Library/BaseLib/BaseLib.inf b/MdePkg/Library/BaseLib/BaseLib.inf
index 26f6b10..c5f45ee 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 0000000..ac980e3
--- /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

+