]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/Invd.c
MdePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / Invd.c
1 /** @file
2 AsmInvd 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 Executes a INVD instruction.
14
15 Executes a INVD instruction. This function is only available on IA-32 and
16 x64.
17
18 **/
19 VOID
20 EFIAPI
21 AsmInvd (
22 VOID
23 )
24 {
25 _asm {
26 invd
27 }
28 }
29