TianoCore EDK2 master
Loading...
Searching...
No Matches
X86EnablePaging64.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
43VOID
44EFIAPI
46 IN UINT16 Cs,
47 IN UINT64 EntryPoint,
48 IN UINT64 Context1 OPTIONAL,
49 IN UINT64 Context2 OPTIONAL,
50 IN UINT64 NewStack
51 )
52{
53 ASSERT (EntryPoint != 0);
54 ASSERT (NewStack != 0);
55 InternalX86EnablePaging64 (Cs, EntryPoint, Context1, Context2, NewStack);
56}
#define IN
Definition: Base.h:279
VOID EFIAPI InternalX86EnablePaging64(IN UINT16 Cs, IN UINT64 EntryPoint, IN UINT64 Context1 OPTIONAL, IN UINT64 Context2 OPTIONAL, IN UINT64 NewStack)
Definition: Non-existing.c:134
VOID EFIAPI AsmEnablePaging64(IN UINT16 Cs, IN UINT64 EntryPoint, IN UINT64 Context1 OPTIONAL, IN UINT64 Context2 OPTIONAL, IN UINT64 NewStack)