diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2016-05-30 18:51:54 -0700 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:48:33 +0800 |
commit | 2a0b1deb7206b9df64b50fc16757a8a4a7461a27 (patch) | |
tree | ce135ffd17e039aa68e4d556c26bdb1ddd0d3704 /MdePkg/Library/BaseLib/Ia32 | |
parent | 682978723ac7b9072a06a04b2e05b16a320fdf81 (diff) | |
download | edk2-2a0b1deb7206b9df64b50fc16757a8a4a7461a27.zip edk2-2a0b1deb7206b9df64b50fc16757a8a4a7461a27.tar.gz edk2-2a0b1deb7206b9df64b50fc16757a8a4a7461a27.tar.bz2 |
MdePkg BaseLib: Convert Ia32/WriteMm0.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/WriteMm0.asm to Ia32/WriteMm0.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/WriteMm0.nasm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/WriteMm0.nasm b/MdePkg/Library/BaseLib/Ia32/WriteMm0.nasm new file mode 100644 index 0000000..76f8976 --- /dev/null +++ b/MdePkg/Library/BaseLib/Ia32/WriteMm0.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:
+;
+; WriteMm0.Asm
+;
+; Abstract:
+;
+; AsmWriteMm0 function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; VOID
+; EFIAPI
+; AsmWriteMm0 (
+; IN UINT64 Value
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(AsmWriteMm0)
+ASM_PFX(AsmWriteMm0):
+ movq mm0, [esp + 4]
+ ret
+
|