fpparmlib.h

来自「IXP425的BSP代码」· C头文件 代码 · 共 59 行

H
59
字号
/* fppArmLib.h - ARM floating-point coprocessor support header file *//* Copyright 1996-1997 Wind River Systems, Inc. *//*modification history--------------------01a,09may96,cdp  created*/#ifndef	__INCfppArmLibh#define	__INCfppArmLibh#ifdef __cplusplusextern "C" {#endif#ifndef	_ASMLANGUAGEtypedef struct fpContext    {    int dummy;    } FP_CONTEXT;#define FPREG_SET FP_CONTEXT/* variable declarations */extern REG_INDEX fpRegName[];		/* f-point data register table */extern REG_INDEX fpCtlRegName[];	/* f-point control register table */extern WIND_TCB *pFppTaskIdPrevious;	/* task id for deferred exceptions */extern FUNCPTR	 fppCreateHookRtn;	/* arch dependent create hook routine */extern FUNCPTR	 fppDisplayHookRtn;	/* arch dependent display routine *//* function declarations */#if defined(__STDC__) || defined(__cplusplus)IMPORT void	fppArchInit (void);IMPORT void	fppArchTaskCreateInit (FP_CONTEXT *pFpContext);#else	/* __STDC__ */IMPORT void	fppArchInit ();IMPORT void	fppArchTaskCreateInit ();#endif	/* __STDC__ */#endif	/* _ASMLANGUAGE */#ifdef __cplusplus}#endif#endif	/* __INCfppArmLibh */

⌨️ 快捷键说明

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