aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1675/tb_patacc.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1675/tb_patacc.vhdl')
-rw-r--r--testsuite/synth/issue1675/tb_patacc.vhdl41
1 files changed, 41 insertions, 0 deletions
diff --git a/testsuite/synth/issue1675/tb_patacc.vhdl b/testsuite/synth/issue1675/tb_patacc.vhdl
new file mode 100644
index 000000000..15468118c
--- /dev/null
+++ b/testsuite/synth/issue1675/tb_patacc.vhdl
@@ -0,0 +1,41 @@
+entity tb_patacc is
+end tb_patacc;
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+use work.pkg.all;
+
+architecture behav of tb_patacc is
+ signal clk : std_logic;
+ signal rst : std_logic;
+ signal res : std_logic_vector(15 downto 0);
+begin
+ dut: entity work.patacc
+ port map (clk, rst, res);
+
+ process
+ procedure pulse is
+ begin
+ clk <= '0';
+ wait for 1 ns;
+ clk <= '1';
+ wait for 1 ns;
+ end pulse;
+ begin
+ rst <= '1';
+ pulse;
+ assert res = x"0000" severity failure;
+
+ rst <= '0';
+ pulse;
+ assert res = x"0001" severity failure;
+
+ pulse;
+ assert res = x"0003" severity failure;
+
+ pulse;
+ assert res = x"0006" severity failure;
+ wait;
+ end process;
+end behav;