FspDebug.s 666 B

123456789101112131415161718192021222324
  1. #------------------------------------------------------------------------------
  2. #
  3. # Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
  4. # SPDX-License-Identifier: BSD-2-Clause-Patent
  5. #
  6. # Abstract:
  7. #
  8. # FSP Debug functions
  9. #
  10. #------------------------------------------------------------------------------
  11. #------------------------------------------------------------------------------
  12. # UINT32 *
  13. # EFIAPI
  14. # GetStackFramePointer (
  15. # VOID
  16. # )
  17. #------------------------------------------------------------------------------
  18. ASM_GLOBAL ASM_PFX(GetStackFramePointer)
  19. ASM_PFX(GetStackFramePointer):
  20. mov %ebp, %eax
  21. ret