]>
Commit | Line | Data |
---|---|---|
e1f414b6 | 1 | /** @file\r |
2 | IA-32/x64 AsmWriteGdtr()\r | |
3 | \r | |
bb817c56 | 4 | Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r |
9344f092 | 5 | SPDX-License-Identifier: BSD-2-Clause-Patent\r |
e1f414b6 | 6 | \r |
e1f414b6 | 7 | **/\r |
8 | \r | |
1efcc4ae | 9 | \r |
f734a10a | 10 | \r |
e1f414b6 | 11 | \r |
12 | #include "BaseLibInternals.h"\r | |
13 | \r | |
14 | /**\r | |
15 | Writes the current Global Descriptor Table Register (GDTR) descriptor.\r | |
16 | \r | |
17 | Writes and the current GDTR descriptor specified by Gdtr. This function is\r | |
030cd1a2 | 18 | only available on IA-32 and x64.\r |
e1f414b6 | 19 | \r |
20 | If Gdtr is NULL, then ASSERT().\r | |
21 | \r | |
2fc59a00 | 22 | @param Gdtr The pointer to a GDTR descriptor.\r |
e1f414b6 | 23 | \r |
24 | **/\r | |
25 | VOID\r | |
26 | EFIAPI\r | |
27 | AsmWriteGdtr (\r | |
28 | IN CONST IA32_DESCRIPTOR *Gdtr\r | |
29 | )\r | |
30 | {\r | |
31 | ASSERT (Gdtr != NULL);\r | |
32 | InternalX86WriteGdtr (Gdtr);\r | |
33 | }\r |