mirror of https://github.com/acidanthera/audk.git
34 lines
739 B
NASM
34 lines
739 B
NASM
;------------------------------------------------------------------------------
|
|
;
|
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
;
|
|
; Module Name:
|
|
;
|
|
; ReadEflags.Asm
|
|
;
|
|
; Abstract:
|
|
;
|
|
; AsmReadEflags function
|
|
;
|
|
; Notes:
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
|
|
DEFAULT REL
|
|
SECTION .text
|
|
|
|
;------------------------------------------------------------------------------
|
|
; UINTN
|
|
; EFIAPI
|
|
; AsmReadEflags (
|
|
; VOID
|
|
; );
|
|
;------------------------------------------------------------------------------
|
|
global ASM_PFX(AsmReadEflags)
|
|
ASM_PFX(AsmReadEflags):
|
|
pushfq
|
|
pop rax
|
|
ret
|
|
|