⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fir_filters_asm.h

📁 dsp 5416dsk aduio音效code
💻 H
字号:
/*****************************************************************************/
/* FILENAME                                                                  */
/*   FIR_filters_asm.h                                                       */
/*                                                                           */
/* DESCRIPTION                                                               */
/*   Header File for different Finite Impulse Response filters implemented   */
/*   as assembly language code, where C code version would be too slow.      */
/*                                                                           */
/* VERSION                                                                   */
/*   1.01                                                                    */
/*                                                                           */
/* AUTHOR                                                                    */
/*   Bao Xiaojing                                                            */
/*                                                                           */
/* REVISION HISTORY                                                          */
/*   VER   DATE        AUTHOR          DESCRIPTION                           */
/* ------------------------------------------------------------------------  */
/*   1.01  2008.12.06  Bao Xiaojing    Update 3 audio effects.               */
/*   1.00  2002.10.30  Unknown         Initial version.                      */
/*                                                                           */
/*****************************************************************************/

#ifndef FIR_FILTERS_ASM_H
#define FIR_FILTERS_ASM_H

void FIR_filters_asm_initialise(void);

signed int FIR_filter_asm(const signed int * filter_constants, signed int input);

signed int FIR_filter_asm_2(const signed int * filter_constants, signed int input);

signed long FIR_dual_filter_asm( const signed int * filter_constants, signed int input);

#endif

/******************************************************************************/
/* End of FIR_filters_asm.h                                                   */
/******************************************************************************/


⌨️ 快捷键说明

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