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

📄 ctypes.h

📁 在ADSP-2126x上编写的优化过的FFT程序(用c和汇编编写)。
💻 H
字号:
/*******************************************************************************
*
* Header File:  ctypes.h
*            
* Description:
*		This file defines integeral types to show thier size in bits.
*		If code is ported to another processor with different size
*		integers, then only needs to be changed.
*
* Author:	
*				Darrel Judd
*				Judd Labs, Inc.
*				801-756-2057
*				drjudd@ieee.org
*
* Revisions:
*					Created June, 2003 Darrel Judd
*******************************************************************************/
// only include once
#ifndef ctypesH
#define ctypesH
//==============================================================================
// definitions
//==============================================================================
typedef unsigned char	U8;
typedef unsigned short	U16;
typedef unsigned long	U32;

typedef	char			S8;
typedef	short			S16;
typedef	long			S32;

#define	OK				(0)
#define	FAIL			(1)

#endif

⌨️ 快捷键说明

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