blob: 9c1d9c8758851c2f44bdd9b6388fcff70892c052 (
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
47
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.env.finish;
entity shift_register_tb is
end shift_register_tb;
architecture sim of shift_register_tb
is
constant clk_hz: integer := 100e6;
constant clk_period: time := 1 sec / clk_hz;
-- number of stages
constant NUM_STAGES: natural := 5;
-- number of bits
constant BITS: natural := 4;
signal clk: std_logic := '1';
signal rst: std_logic := '1';
signal x: std_logic_vector (BITS - 1 downto 0) := (others => '0');
signal y: std_logic_vector (BITS - 1 downto 0);
begin
clk <= not clk after clk_period / 2;
DUT: entity work.shift_register (rtl)
generic map (NUM_STAGES => NUM_STAGES, BITS => BITS)
port map (clk => clk, rst => rst, x => x, y => y);
SEQUENCER_PROC: process
begin
wait for clk_period * 2;
rst <= '0';
wait for clk_period;
for i in - 2** (BITS - 1) to 2** (BITS - 1) - 1 loop
x <= std_logic_vector (to_signed (i, BITS));
wait for clk_period;
end loop;
wait;
end process;
CHECK_PROC: process
begin
wait on rst;
wait for (NUM_STAGES + 1) * clk_period;
for i in - 2** (BITS - 1) to 2** (BITS - 1) - 1 loop
assert to_integer (signed (y)) = i report "y: " & to_string (to_integer (signed (y))) & " is not equal to " & to_string (i) severity failure;
wait for clk_period;
end loop;
wait for clk_period;
finish;
end process;
end architecture;
|