MdePkg BaseLib: Convert X64/Mwait.asm to NASM

The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert
X64/Mwait.asm to X64/Mwait.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:01 -07:00 committed by Liming Gao
parent 464e84f88e
commit fe94593512
2 changed files with 43 additions and 0 deletions

View File

@ -465,6 +465,7 @@
X64/Wbinvd.asm | MSFT
X64/DisablePaging64.nasm| MSFT
X64/DisablePaging64.asm | MSFT
X64/Mwait.nasm| MSFT
X64/Mwait.asm | MSFT
X64/Monitor.asm | MSFT
X64/ReadPmc.asm | MSFT
@ -547,6 +548,7 @@
X64/Wbinvd.asm | INTEL
X64/DisablePaging64.nasm| INTEL
X64/DisablePaging64.asm | INTEL
X64/Mwait.nasm| INTEL
X64/Mwait.asm | INTEL
X64/Monitor.asm | INTEL
X64/ReadPmc.asm | INTEL

View File

@ -0,0 +1,41 @@
;------------------------------------------------------------------------------
;
; 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:
;
; Mwait.Asm
;
; Abstract:
;
; AsmMwait function
;
; Notes:
;
;------------------------------------------------------------------------------
DEFAULT REL
SECTION .text
;------------------------------------------------------------------------------
; UINT64
; EFIAPI
; AsmMwait (
; IN UINTN Eax,
; IN UINTN Ecx
; );
;------------------------------------------------------------------------------
global ASM_PFX(AsmMwait)
ASM_PFX(AsmMwait):
mov eax, ecx
mov ecx, edx
DB 0xf, 1, 0xc9 ; mwait
ret