blob: 9b4c5d8520129a91bf4066dc06c75ea9db068346 (
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
45
46
|
entity tb_top is
end tb_top;
library ieee;
use ieee.std_logic_1164.all;
architecture behav of tb_top is
signal clk : std_logic;
signal x, y : std_logic_vector (1 downto 0);
signal data : std_logic_vector (3 downto 0);
begin
dut: entity work.top
port map (clk, x, y, data);
process
procedure pulse is
begin
wait for 1 ns;
clk <= '1';
wait for 1 ns;
clk <= '0';
end pulse;
begin
clk <= '0';
x <= "00";
y <= "00";
pulse;
assert data = "0001" severity failure;
x <= "10";
pulse;
assert data = "1110" severity failure;
y <= "01";
pulse;
assert data = "1101" severity failure;
x <= "10";
y <= "11";
pulse;
assert data = "0111" severity failure;
wait;
end process;
end behav;
|