vol_ti.c

来自「DSP体系结构实现与应用源代码」· C语言 代码 · 共 35 行

C
35
字号
/*
 *  Copyright 2003 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) ReferenceFrameworks 2.20.00.08 07-18-03 (swat-f02)" */
/*
 *  ======== vol_ti.c ========
 *  Required module init and exit method for the VOL_TI module.
 */

#pragma CODE_SECTION(VOL_TI_init, ".text:init") 
#pragma CODE_SECTION(VOL_TI_exit, ".text:exit") 

#include <std.h>

/*
 * ======== VOL_TI_exit ========
 * Module finalization method.
 */
Void VOL_TI_exit(Void)
{
}

/*
 * ======== VOL_TI_init ========
 * Module initialization method.
 */
Void VOL_TI_init(Void)
{
}

⌨️ 快捷键说明

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