aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue50/idct.d/tb.vhd
blob: 94a534963b685c345fd9db8e52277367c1011ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
--test bench written by Alban Bourge @ TIMA
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
library work;
use work.pkg_tb.all;

entity tb is
end tb;

architecture behavior of tb is

	signal clock      : std_logic  := '0';
	signal clock_next : std_logic  := '0';
	signal reset      : std_logic  := '0';
	--TOP signals
	signal n_error    : std_logic;
	signal stopped    : std_logic;

begin

	test : entity work.cp3_test(rtl)
	port map(
						clock   => clock,
						reset   => reset,
						n_error => n_error,
						stopped => stopped
					);

	--clock generator
	clock <= clock_next after 10 ns;
	clock_next <= not clock when stopped = '0' else '0';

	reset_proc : process
	begin
		reset <= '1';
		for i in 1 to 5 loop
			wait until rising_edge(clock);
		end loop;
		reset <= '0';
		wait;
	end process reset_proc;

end behavior;