aboutsummaryrefslogtreecommitdiffstats
path: root/roms/edk2/MdePkg/Library/BaseLib/X64/Invd.nasm
diff options
context:
space:
mode:
Diffstat (limited to 'roms/edk2/MdePkg/Library/BaseLib/X64/Invd.nasm')
-rw-r--r--roms/edk2/MdePkg/Library/BaseLib/X64/Invd.nasm32
1 files changed, 32 insertions, 0 deletions
diff --git a/roms/edk2/MdePkg/Library/BaseLib/X64/Invd.nasm b/roms/edk2/MdePkg/Library/BaseLib/X64/Invd.nasm
new file mode 100644
index 000000000..5580f64c5
--- /dev/null
+++ b/roms/edk2/MdePkg/Library/BaseLib/X64/Invd.nasm
@@ -0,0 +1,32 @@
+;------------------------------------------------------------------------------
+;
+; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
+; SPDX-License-Identifier: BSD-2-Clause-Patent
+;
+; Module Name:
+;
+; Invd.Asm
+;
+; Abstract:
+;
+; AsmInvd function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ DEFAULT REL
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; VOID
+; EFIAPI
+; AsmInvd (
+; VOID
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(AsmInvd)
+ASM_PFX(AsmInvd):
+ invd
+ ret
+