Lothar Miller wrote:
> then you must assert this reset
> signal at the beginning of your test bench...
I did it so:
1 | signal reset : std_logic :='1' ;
|
2 |
|
3 | res: process
|
4 | begin
|
5 | for i in 0 to 100 loop
|
6 | wait until clk='1' and clk'event;
|
7 | end loop;
|
8 | reset <='0';wait;
|
9 | end process res;
|
Also, i created a new output signal (it is called trans).
,
transfer - a signal with information from output bus of CIC. In the
simulator i saw that trans have status "U", and on output bus i have
nulls. What is it mean? Is the CIC wrong? But i took an example from the
book, and FIR filter also must be done correctly, because i did FIR some
times ago and it was done correctly, and i just have taken my previous
code with the necessary changes.