TianoCore EDK2 master
Loading...
Searching...
No Matches
ReadIdtr.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
20VOID
21EFIAPI
23 OUT IA32_DESCRIPTOR *Idtr
24 )
25{
26 _asm {
27 mov eax, Idtr
28 sidt fword ptr [eax]
29 }
30}
#define OUT
Definition: Base.h:284
VOID EFIAPI InternalX86ReadIdtr(OUT IA32_DESCRIPTOR *Idtr)
Definition: ReadIdtr.c:22