mirror of https://github.com/acidanthera/audk.git
MdePkg BaseCpuLib: Convert Ia32/CpuFlushTlb.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert Ia32/CpuFlushTlb.asm to Ia32/CpuFlushTlb.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
e639ea6af2
commit
68562b45e9
|
@ -38,6 +38,7 @@
|
||||||
|
|
||||||
Ia32/CpuSleep.nasm| INTEL
|
Ia32/CpuSleep.nasm| INTEL
|
||||||
Ia32/CpuSleep.asm | INTEL
|
Ia32/CpuSleep.asm | INTEL
|
||||||
|
Ia32/CpuFlushTlb.nasm| INTEL
|
||||||
Ia32/CpuFlushTlb.asm | INTEL
|
Ia32/CpuFlushTlb.asm | INTEL
|
||||||
|
|
||||||
Ia32/CpuSleepGcc.c | GCC
|
Ia32/CpuSleepGcc.c | GCC
|
||||||
|
|
|
@ -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:
|
||||||
|
;
|
||||||
|
; CpuFlushTlb.Asm
|
||||||
|
;
|
||||||
|
; Abstract:
|
||||||
|
;
|
||||||
|
; CpuFlushTlb function
|
||||||
|
;
|
||||||
|
; Notes:
|
||||||
|
;
|
||||||
|
;------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
SECTION .text
|
||||||
|
|
||||||
|
;------------------------------------------------------------------------------
|
||||||
|
; VOID
|
||||||
|
; EFIAPI
|
||||||
|
; CpuFlushTlb (
|
||||||
|
; VOID
|
||||||
|
; );
|
||||||
|
;------------------------------------------------------------------------------
|
||||||
|
global ASM_PFX(CpuFlushTlb)
|
||||||
|
ASM_PFX(CpuFlushTlb):
|
||||||
|
mov eax, cr3
|
||||||
|
mov cr3, eax ; moving to CR3 flushes TLB
|
||||||
|
ret
|
||||||
|
|
Loading…
Reference in New Issue