fpu_enable.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. /***********************************************************************
  2. * $Id: fpu_enable.h
  3. *
  4. * Project: LPC43xx
  5. *
  6. * Description: fpu initialization routine header
  7. *
  8. * Copyright(C) 2011, NXP Semiconductor
  9. * All rights reserved.
  10. *
  11. ***********************************************************************
  12. * Software that is described herein is for illustrative purposes only
  13. * which provides customers with programming information regarding the
  14. * products. This software is supplied "AS IS" without any warranties.
  15. * NXP Semiconductors assumes no responsibility or liability for the
  16. * use of the software, conveys no license or title under any patent,
  17. * copyright, or mask work right to the product. NXP Semiconductors
  18. * reserves the right to make changes in the software without
  19. * notification. NXP Semiconductors also make no representation or
  20. * warranty that such application will be suitable for the specified
  21. * use without further testing or modification.
  22. **********************************************************************/
  23. #ifndef __FPU_ENABLE_H
  24. #define __FPU_ENABLE_H
  25. #if defined(__ARMCC_VERSION)
  26. void fpuEnable(void) __attribute__ ((section("BOOTSTRAP_CODE")));
  27. #else
  28. extern void fpuEnable(void);
  29. #endif
  30. #endif /* __FPU_ENABLE_H */