diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-01 06:28:58 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-01 06:28:58 +0200 |
commit | 7223b0ea62072ff2ee867b539e13a4822a8cb422 (patch) | |
tree | 6f5ff28fa393e68b5c6ecf9877aa6923b1045442 /testsuite/synth/stmt01/tb_forloop2.vhdl | |
parent | 6e7525efaa81ddf6ac9c27525c16e1a7701cd3f4 (diff) | |
download | ghdl-7223b0ea62072ff2ee867b539e13a4822a8cb422.tar.gz ghdl-7223b0ea62072ff2ee867b539e13a4822a8cb422.tar.bz2 ghdl-7223b0ea62072ff2ee867b539e13a4822a8cb422.zip |
testsuite/synth: add forloop2 test.
Diffstat (limited to 'testsuite/synth/stmt01/tb_forloop2.vhdl')
-rw-r--r-- | testsuite/synth/stmt01/tb_forloop2.vhdl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testsuite/synth/stmt01/tb_forloop2.vhdl b/testsuite/synth/stmt01/tb_forloop2.vhdl new file mode 100644 index 000000000..9ae956da6 --- /dev/null +++ b/testsuite/synth/stmt01/tb_forloop2.vhdl @@ -0,0 +1,32 @@ +entity tb_forloop2 is +end tb_forloop2; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_forloop2 is + signal vin : std_logic_vector (7 downto 0); + signal vout : std_logic_vector (3 downto 0); + signal clk : std_logic; + signal b : std_logic; + signal c : std_logic; + signal z : std_logic; +begin + dut: entity work.forloop2 + port map (vin => vin, vout => vout, clk => clk); + + process + procedure pulse is + begin + clk <= '0'; + wait for 1 ns; + clk <= '1'; + wait for 1 ns; + end pulse; + begin + vin <= x"00"; + pulse; + assert vout = x"0" severity failure; + wait; + end process; +end behav; |