mathhardlib.c

来自「VxWorks BSP框架源代码包含头文件和驱动」· C语言 代码 · 共 39 行

C
39
字号
/* mathHardLib.c - hardware floating point math library *//* Copyright 1984-1996 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01a,10nov96,tpr	 written.*//*DESCRIPTIONThis library provides support routines for using the hardware floatingpoint functions.*/#include "vxWorks.h"#include "math.h"#include "fppLib.h"/******************************************************************************** mathHardInit - initialize hardware floating point math support** This routine is called from usrConfig if INCLUDE_HW_FP is defined.  * This routine will intialize the floating point hardware support * library (fppLib) and also cause the linker to include the functions* in mathHardALib.s.  **/void mathHardInit ()    {    fppInit ();			/* initialize the hardware support */    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?