usraltivec.c

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

C
37
字号
/* usrAltivec.c - dsp support library *//* Copyright 1984-1999 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01a,10may01,dtr Created*//* DESCRIPTION : * Initialises shell task options and general spawn task options to  * include VX_ALTIVEC_TASK  */#include "altivecLib.h" void usrAltivecInit (void)    {    altivecInit();#ifdef  INCLUDE_SHELL    {    extern int shellTaskOptions;    extern int spTaskOptions;    shellTaskOptions |= VX_ALTIVEC_TASK;    spTaskOptions |= VX_ALTIVEC_TASK;    }#endif  /* INCLUDE_SHELL */#ifdef  INCLUDE_SHOW_ROUTINES    altivecShowInit ();                     /* install dsp show routine */#endif  /* INCLUDE_SHOW_ROUTINES */    }

⌨️ 快捷键说明

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