]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Library/BaseLib/X86WriteIdtr.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Library / BaseLib / X86WriteIdtr.c
... / ...
CommitLineData
1/** @file\r
2 IA-32/x64 AsmWriteIdtr()\r
3\r
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
6\r
7**/\r
8\r
9#include "BaseLibInternals.h"\r
10\r
11/**\r
12 Writes the current Interrupt Descriptor Table Register(IDTR) descriptor.\r
13\r
14 Writes the current IDTR descriptor and returns it in Idtr. This function is\r
15 only available on IA-32 and x64.\r
16\r
17 If Idtr is NULL, then ASSERT().\r
18\r
19 @param Idtr The pointer to a IDTR descriptor.\r
20\r
21**/\r
22VOID\r
23EFIAPI\r
24AsmWriteIdtr (\r
25 IN CONST IA32_DESCRIPTOR *Idtr\r
26 )\r
27{\r
28 ASSERT (Idtr != NULL);\r
29 InternalX86WriteIdtr (Idtr);\r
30}\r