TianoCore EDK2 master
Loading...
Searching...
No Matches
WriteIdtr.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
20VOID
21EFIAPI
23 IN CONST IA32_DESCRIPTOR *Idtr
24 )
25{
26 _asm {
27 mov eax, Idtr
28 pushfd
29 cli
30 lidt fword ptr [eax]
31 popfd
32 }
33}
#define CONST
Definition: Base.h:259
#define IN
Definition: Base.h:279
VOID EFIAPI InternalX86WriteIdtr(IN CONST IA32_DESCRIPTOR *Idtr)
Definition: WriteIdtr.c:22