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