usrwdbsysfpp.c

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

C
44
字号
/* usrWdbTaskFpp.c - optional floating point support for the extern WDB agent *//* Copyright 1998 Wind River Systems, Inc. *//*modification history--------------------01a,22may98,dbt	 taken from 01a of usrWdbFpp.c*//*DESCRIPTIONThis library configures the external WDB agent's hardware floating pointsupport.*//* externals */extern BOOL	wdbIsInitialized;/******************************************************************************** wdbSysFppInit - initialize hardware floating point support** This routine initializes hardware floating point support for the external* WDB agent.** NOMANUAL*/void wdbSysFppInit (void)    {    WDB_REG_SET_OBJ * pFpRegs;    /* install system mode agent hook for the fpp unit */    if (wdbTgtHasFpp() && wdbIsInitialized)	{	pFpRegs = wdbFpLibInit();	wdbExternRegSetObjAdd (pFpRegs);	}    }

⌨️ 快捷键说明

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