MdePkg BaseLib: Convert X64/ReadDr1.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/ReadDr1.asm to X64/ReadDr1.nasm

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
Jordan Justen 2016-05-30 18:52:04 -07:00 committed by Liming Gao
parent 7df38fad06
commit 3fca763fd4
2 changed files with 40 additions and 0 deletions

View File

@ -563,6 +563,7 @@
X64/ReadDr3.asm | MSFT
X64/ReadDr2.nasm| MSFT
X64/ReadDr2.asm | MSFT
X64/ReadDr1.nasm| MSFT
X64/ReadDr1.asm | MSFT
X64/ReadDr0.asm | MSFT
X64/WriteCr4.asm | MSFT
@ -694,6 +695,7 @@
X64/ReadDr3.asm | INTEL
X64/ReadDr2.nasm| INTEL
X64/ReadDr2.asm | INTEL
X64/ReadDr1.nasm| INTEL
X64/ReadDr1.asm | INTEL
X64/ReadDr0.asm | INTEL
X64/WriteCr4.asm | INTEL

View File

@ -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:
;
; ReadDr1.Asm
;
; Abstract:
;
; AsmReadDr1 function
;
; Notes:
;
;------------------------------------------------------------------------------
DEFAULT REL
SECTION .text
;------------------------------------------------------------------------------
; UINTN
; EFIAPI
; AsmReadDr1 (
; VOID
; );
;------------------------------------------------------------------------------
global ASM_PFX(AsmReadDr1)
ASM_PFX(AsmReadDr1):
mov rax, dr1
ret