~ruther/yosys-sim-testing

ref: 74fa352c9d0aa60c75c7cce0e09cadd345a44e44 yosys-sim-testing/projects/counter/tb/counter_tb.vhd -rw-r--r-- 820 bytes
74fa352c — Rutherther Initial commit a month ago
                                                                                
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
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

entity counter_tb is

end entity counter_tb;

architecture behav of counter_tb is
  signal clk : std_logic := '0';
  signal rst : std_logic := '0';
  signal led : std_logic;
  signal count : std_logic_vector(9 downto 0);
  signal run : std_logic := '1';
begin  -- architecture behav

  clk <= not clk and run after 5 ns;
  rst <= '0', '1' after 15 ns;

  dut : entity work.counter
    port map (
      clk_i  => clk,
      rst_in => rst,
      led_o  => led,
    count_o  => count);

  process is
  begin  -- process
    wait until count'event;
    report "count: " & to_string(count) & ", led: " & to_string(led);
  end process;

  process is
  begin  -- process
    wait for 10 us;
    run <= '0';
    wait;
  end process;

end architecture behav;
Do not follow this link