;------------------------------------------------------------------------------ ; ; Copyright (c) 2006, Intel Corporation. All rights reserved.
; SPDX-License-Identifier: BSD-2-Clause-Patent ; ; Module Name: ; ; ReadCr4.Asm ; ; Abstract: ; ; AsmReadCr4 function ; ; Notes: ; ;------------------------------------------------------------------------------ DEFAULT REL SECTION .text ;------------------------------------------------------------------------------ ; UINTN ; EFIAPI ; AsmReadCr4 ( ; VOID ; ); ;------------------------------------------------------------------------------ global ASM_PFX(AsmReadCr4) ASM_PFX(AsmReadCr4): mov rax, cr4 ret