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:36 +0800 |
commit | 38b40a194556d96fce83770b62d0a808f77ae0c8 (patch) | |
tree | df625674e6fe1232ae25f46bff19d808663da679 /MdePkg/Library/BaseLib/Ia32 | |
parent | 466c7423368a50c355cd9fb9f970d78bb9349e0e (diff) | |
download | edk2-38b40a194556d96fce83770b62d0a808f77ae0c8.zip edk2-38b40a194556d96fce83770b62d0a808f77ae0c8.tar.gz edk2-38b40a194556d96fce83770b62d0a808f77ae0c8.tar.bz2 |
MdePkg BaseLib: Convert Ia32/WriteDr7.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
Ia32/WriteDr7.asm to Ia32/WriteDr7.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/WriteDr7.nasm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/WriteDr7.nasm b/MdePkg/Library/BaseLib/Ia32/WriteDr7.nasm new file mode 100644 index 0000000..0dd8056 --- /dev/null +++ b/MdePkg/Library/BaseLib/Ia32/WriteDr7.nasm @@ -0,0 +1,38 @@ +;------------------------------------------------------------------------------
+;
+; 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:
+;
+; WriteDr7.Asm
+;
+; Abstract:
+;
+; AsmWriteDr7 function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; UINTN
+; EFIAPI
+; AsmWriteDr7 (
+; IN UINTN Value
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(AsmWriteDr7)
+ASM_PFX(AsmWriteDr7):
+ mov eax, [esp + 4]
+ mov dr7, eax
+ ret
+
|