TianoCore EDK2 master
Loading...
Searching...
No Matches
X86DisablePaging64.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
41VOID
42EFIAPI
44 IN UINT16 Cs,
45 IN UINT32 EntryPoint,
46 IN UINT32 Context1 OPTIONAL,
47 IN UINT32 Context2 OPTIONAL,
48 IN UINT32 NewStack
49 )
50{
51 ASSERT (EntryPoint != 0);
52 ASSERT (NewStack != 0);
53 InternalX86DisablePaging64 (Cs, EntryPoint, Context1, Context2, NewStack);
54}
VOID EFIAPI InternalX86DisablePaging64(IN UINT16 CodeSelector, IN UINT32 EntryPoint, IN UINT32 Context1 OPTIONAL, IN UINT32 Context2 OPTIONAL, IN UINT32 NewStack)
Definition: Non-existing.c:39
#define IN
Definition: Base.h:279
VOID EFIAPI AsmDisablePaging64(IN UINT16 Cs, IN UINT32 EntryPoint, IN UINT32 Context1 OPTIONAL, IN UINT32 Context2 OPTIONAL, IN UINT32 NewStack)