diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-01 20:03:56 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-01 20:03:56 +0200 |
commit | 08b709a5419c49bca150db52a93167f4a1685f26 (patch) | |
tree | 95bc8087bb82f9b1a41feae9ff347993138f6830 /testsuite/synth/asgn01/tb_asgn06.vhdl | |
parent | 6324fe8dc6aba1e0a57575a2986407df150f59f3 (diff) | |
download | ghdl-08b709a5419c49bca150db52a93167f4a1685f26.tar.gz ghdl-08b709a5419c49bca150db52a93167f4a1685f26.tar.bz2 ghdl-08b709a5419c49bca150db52a93167f4a1685f26.zip |
testsuite/synth: add a test for previous commit.
Diffstat (limited to 'testsuite/synth/asgn01/tb_asgn06.vhdl')
-rw-r--r-- | testsuite/synth/asgn01/tb_asgn06.vhdl | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testsuite/synth/asgn01/tb_asgn06.vhdl b/testsuite/synth/asgn01/tb_asgn06.vhdl new file mode 100644 index 000000000..82870f465 --- /dev/null +++ b/testsuite/synth/asgn01/tb_asgn06.vhdl @@ -0,0 +1,38 @@ +entity tb_asgn06 is +end tb_asgn06; + +library ieee; +use ieee.std_logic_1164.all; + +architecture behav of tb_asgn06 is + signal s0 : std_logic; + signal clk : std_logic; + signal r : std_logic_vector (65 downto 0); +begin + dut: entity work.asgn06 + port map (clk => clk, s0 => s0, r => r); + + process + procedure pulse is + begin + clk <= '0'; + wait for 1 ns; + clk <= '1'; + wait for 1 ns; + end pulse; + begin + s0 <= '0'; + pulse; + assert r (0) = '1' severity failure; + assert r (64 downto 1) = x"ffff_eeee_dddd_cccc" severity failure; + assert r (65) = '1' severity failure; + + s0 <= '1'; + pulse; + assert r (0) = '0' severity failure; + assert r (64 downto 1) = x"ffff_eeee_dddd_cc9c" severity failure; + assert r (65) = '0' severity failure; + + wait; + end process; +end behav; |