usrwdbfpp.c

来自「IXP425的BSP代码」· C语言 代码 · 共 40 行

C
40
字号
/* usrWdbFpp.c - optional floating point support for the WDB agent *//* Copyright 1997-1998 Wind River Systems, Inc. *//*modification history--------------------01b,22may98,dbt	 moved fpp task mode support in usrWdbTaskFpp.c and 		 system mode support in usrWdbSysFpp.c.01a,21jul97,ms	 taken from 01y of usrWdb.c*//*DESCRIPTIONThis library configures the WDB agent's hardware floating pointsupport.*/extern void wdbTgtHasFppSet(void);/******************************************************************************** wdbFppInit - initialize hardware floating point support*/void wdbFppInit (void)    {    /* no fpp unit - just return */    if (fppProbe() == ERROR)	return;    /* mark fpp unit as available */    wdbTgtHasFppSet();    }

⌨️ 快捷键说明

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