采用流水线结构的CIC 抽取滤波器结构如下:// 三级CIC抽取器实例:cic3_decimator.Vmodule cic3_decimator(clk, x_in, y_out); parameter STATE_HOLD = 1'b0, STATE_SAMPLE = 1'b1; input clk; // 输入时钟 input [7:0] x_in; // 输入8位数据 output [25:0] y_out; // 输出26位数据 reg state, derived_clk; reg [4:0] cou... Read More
posted @ 2014-02-04 00:01
乐富道
Views(4499)
Comments(0)
Diggs(0)

浙公网安备 33010602011771号