TianoCore EDK2 master
Loading...
Searching...
No Matches
WriteLdtr.c
Go to the documentation of this file.
1
18VOID
19EFIAPI
21 IN UINT16 Ldtr
22 )
23{
24 _asm {
25 xor eax, eax
26 mov ax, Ldtr
27 lldt ax
28 }
29}
#define IN
Definition: Base.h:279
VOID EFIAPI AsmWriteLdtr(IN UINT16 Ldtr)
Definition: WriteLdtr.c:20