Sign in
qemu
/
edk2
/
07c0c2eb0a5970db614ebce1060fc79d6904bdfd
/
.
/
MdePkg
/
Library
/
BaseLib
/
Ia32
/
EnableInterrupts.c
blob: 570c39db5b03436f82ced8be2ce15236604fd275 [
file
]
/** @file
EnableInterrupts function
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
/**
Enables CPU interrupts.
**/
VOID
EFIAPI
EnableInterrupts
(
VOID
)
{
_asm
{
sti
}
}