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

📄 dspf_sp_blk_move.h

📁 Using ROM Contents on TMS320C672x
💻 H
字号:
/* ======================================================================== */
/*  TEXAS INSTRUMENTS, INC.                                                 */
/*                                                                          */
/*  NAME                                                                    */
/*      DSPF_sp_blk_move -- Single Precision Block Move                          */
/*                                                                          */
/* USAGE                                                                    */
/*       This routine has the following C prototype:                        */
/*                                                                          */
/*       void DSPF_sp_blk_move                                                   */
/*                     (                                                    */
/*                         const float    *r,                               */
/*                         const float *  restrict r,                       */
/*                         int            nx,                               */
/*                     )                                                    */
/*                                                                          */
/*       x[nx]:   Pointer to source data to be moved.                       */
/*       r[nx]:   Pointer to destination array.                             */
/*       nx:        Number of floats to move.                               */
/*                                                                          */
/*                                                                          */
/* DESCRIPTION                                                              */
/*       This routine moves nx floats from memory location pointed to by x  */
/*       to a separate memory location pointed to by r.                     */
/*                                                                          */
/*                                                                          */
/* TECHNIQUES                                                               */
/* ASSUMPTIONS                                                              */
/* ------------------------------------------------------------------------ */
/*            Copyright (c) 2003 Texas Instruments, Incorporated.           */
/*                           All Rights Reserved.                           */
/* ======================================================================== */
#ifndef DSPF_SP_BLK_MOVE_ASM_H_
#define DSPF_SP_BLK_MOVE_ASM_H_ 1

void DSPF_sp_blk_move(const     float * x, float *restrict r, int nx);

#endif
/* ======================================================================== */
/*  End of file: DSPF_sp_blk_move_h.asm                                          */
/* ------------------------------------------------------------------------ */
/*          Copyright (C) 2003 Texas Instruments, Incorporated.             */
/*                          All Rights Reserved.                            */
/* ======================================================================== */

⌨️ 快捷键说明

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