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 24 #ifndef __FPU_ENABLE_H 25 #define __FPU_ENABLE_H 26 27 #if defined(__ARMCC_VERSION) 28 void fpuEnable(void) __attribute__ ((section("BOOTSTRAP_CODE"))); 29 #else 30 extern void fpuEnable(void); 31 #endif 32 33 #endif /* __FPU_ENABLE_H */ 34