diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2016-05-30 18:51:59 -0700 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:49:21 +0800 |
commit | 0583d9810eb659e4bb7230fadefb408b52c3eb2c (patch) | |
tree | 464bbd1e5fb63e93150342f84865605c1fcf622e /MdePkg/Library/BaseLib/Ia32 | |
parent | 124ae239bb601cbfa377890dcf511da7a50137f4 (diff) | |
download | edk2-0583d9810eb659e4bb7230fadefb408b52c3eb2c.tar.gz edk2-0583d9810eb659e4bb7230fadefb408b52c3eb2c.tar.bz2 edk2-0583d9810eb659e4bb7230fadefb408b52c3eb2c.zip |
MdePkg BaseLib: Convert Ia32/CpuPause.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/CpuPause.asm to Ia32/CpuPause.nasm
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32')
-rw-r--r-- | MdePkg/Library/BaseLib/Ia32/CpuPause.nasm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/CpuPause.nasm b/MdePkg/Library/BaseLib/Ia32/CpuPause.nasm new file mode 100644 index 0000000000..19c4fbbf77 --- /dev/null +++ b/MdePkg/Library/BaseLib/Ia32/CpuPause.nasm @@ -0,0 +1,36 @@ +;------------------------------------------------------------------------------ ;
+; 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:
+;
+;------------------------------------------------------------------------------
+
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; VOID
+; EFIAPI
+; CpuPause (
+; VOID
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(CpuPause)
+ASM_PFX(CpuPause):
+ pause
+ ret
+
|