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

📄 list.1.txt

📁 This archive contains circuit diagram and text documents making up the design of audio spectrum anal
💻 TXT
字号:
#ifndef FIX_H
#define FIX_H

extern const int q;     //exponent

//fixed point number type
typedef int fix;        //mantissa (interpreted as fixed point number with exponent q)

//arithmetic operations
#define FADD(a,b)       ((a)+(b))
#define FSUB(a,b)       ((a)-(b))
#define FMUL(a,b,q)     (((a)*(b))>>(q))
#define FDIV(a,b,q)     (((a)<<(q))/(b))

#endif

⌨️ 快捷键说明

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