]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/EnableInterrupts.c
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / EnableInterrupts.c
1 /** @file
2 EnableInterrupts function
3
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9
10
11
12 /**
13 Enables CPU interrupts.
14
15 **/
16 VOID
17 EFIAPI
18 EnableInterrupts (
19 VOID
20 )
21 {
22 _asm {
23 sti
24 }
25 }
26