]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/Invd.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[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 Executes a INVD instruction.
11
12 Executes a INVD instruction. This function is only available on IA-32 and
13 x64.
14
15 **/
16 VOID
17 EFIAPI
18 AsmInvd (
19 VOID
20 )
21 {
22 _asm {
23 invd
24 }
25 }