MainUniCore.c 591 B

1234567891011121314151617181920212223242526272829303132
  1. /** @file
  2. *
  3. * Copyright (c) 2011, ARM Limited. All rights reserved.
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause-Patent
  6. *
  7. **/
  8. #include "PrePi.h"
  9. VOID
  10. PrimaryMain (
  11. IN UINTN UefiMemoryBase,
  12. IN UINTN StacksBase,
  13. IN UINT64 StartTimeStamp
  14. )
  15. {
  16. PrePiMain (UefiMemoryBase, StacksBase, StartTimeStamp);
  17. // We must never return
  18. ASSERT(FALSE);
  19. }
  20. VOID
  21. SecondaryMain (
  22. IN UINTN MpId
  23. )
  24. {
  25. // We must never get into this function on UniCore system
  26. ASSERT(FALSE);
  27. }