initplat.c 419 B

12345678910111213141516171819202122232425262728293031
  1. /*++
  2. Copyright (c) 1999 Intel Corporation
  3. Module Name:
  4. initplat.c
  5. Abstract:
  6. Functions to make SAL and PAL proc calls
  7. Revision History
  8. --*/
  9. #include "lib.h"
  10. //#include "palproc.h"
  11. VOID
  12. InitializeLibPlatform (
  13. IN EFI_HANDLE ImageHandle,
  14. IN EFI_SYSTEM_TABLE *SystemTable
  15. )
  16. {
  17. PLABEL SalPlabel;
  18. UINT64 PalEntry;
  19. LibInitSalAndPalProc (&SalPlabel, &PalEntry);
  20. }