]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/WriteCr3.nasm
MdePkg: Replace Opcode with the corresponding instructions.
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / WriteCr3.nasm
1 ;------------------------------------------------------------------------------
2 ;
3 ; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4 ; SPDX-License-Identifier: BSD-2-Clause-Patent
5 ;
6 ; Module Name:
7 ;
8 ; WriteCr3.Asm
9 ;
10 ; Abstract:
11 ;
12 ; AsmWriteCr3 function
13 ;
14 ; Notes:
15 ;
16 ;------------------------------------------------------------------------------
17
18 SECTION .text
19
20 ;------------------------------------------------------------------------------
21 ; UINTN
22 ; EFIAPI
23 ; AsmWriteCr3 (
24 ; UINTN Cr3
25 ; );
26 ;------------------------------------------------------------------------------
27 global ASM_PFX(AsmWriteCr3)
28 ASM_PFX(AsmWriteCr3):
29 mov eax, [esp + 4]
30 mov cr3, eax
31 ret
32