mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-19 00:28:11 +02:00
34 lines
728 B
NASM
34 lines
728 B
NASM
;------------------------------------------------------------------------------
|
|
;
|
|
; Copyright (c) 2024, Mikhail Krichanov. All rights reserved.
|
|
; SPDX-License-Identifier: BSD-3-Clause
|
|
;
|
|
; Module Name:
|
|
;
|
|
; WriteEflags.Asm
|
|
;
|
|
; Abstract:
|
|
;
|
|
; AsmWriteEflags function
|
|
;
|
|
; Notes:
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
|
|
DEFAULT REL
|
|
SECTION .text
|
|
|
|
;------------------------------------------------------------------------------
|
|
; UINTN
|
|
; EFIAPI
|
|
; AsmWriteEflags (
|
|
; UINTN Eflags
|
|
; );
|
|
;------------------------------------------------------------------------------
|
|
global ASM_PFX(AsmWriteEflags)
|
|
ASM_PFX(AsmWriteEflags):
|
|
push ecx
|
|
popfd
|
|
mov eax, ecx
|
|
ret
|