哦,我没有用过ti公司的C3x,我以前用ADI的。
好象这里DSP技术板块的斑竹是用TI的,而且这里有总线技术板块,你可以去那边问一问。
对于旋转因子矩阵,可采用带符号的纯小数格式。
先定义子类型:
subtype data_value is std_logic_vector(data_width-1 downto 0); -- 数据子类型
subtype int_data_value is std_logic_vector(int_data_width-1 downto 0); -- 内部数据子类型
subtype coeff_value is std_logic_vector(coeff_width-1 downto 0); -- 旋转因子系数子类型
type TF_R_Array is array (0 to fft_length-1) of coeff_value; -- 旋转因子实系数矩阵类型
type TF_I_Array is array (0 to fft_length-1) of coeff_value; -- 旋转因子虚系数矩阵类型