aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1140/tb_ent.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-02-25 01:23:31 +0100
committerTristan Gingold <tgingold@free.fr>2020-02-25 01:23:31 +0100
commitab2e4632eb987f9173f56bab05adf18308e060fb (patch)
tree93420bd74af0236eb0721f0f52f7038fbb8e7964 /testsuite/synth/issue1140/tb_ent.vhdl
parentc6e5cfd09db4bb1c6d1d8de21ccff5007c7f452d (diff)
downloadghdl-ab2e4632eb987f9173f56bab05adf18308e060fb.tar.gz
ghdl-ab2e4632eb987f9173f56bab05adf18308e060fb.tar.bz2
ghdl-ab2e4632eb987f9173f56bab05adf18308e060fb.zip
testsuite/synth: add test case for #1140
Diffstat (limited to 'testsuite/synth/issue1140/tb_ent.vhdl')
-rw-r--r--testsuite/synth/issue1140/tb_ent.vhdl49
1 files changed, 49 insertions, 0 deletions
diff --git a/testsuite/synth/issue1140/tb_ent.vhdl b/testsuite/synth/issue1140/tb_ent.vhdl
new file mode 100644
index 000000000..85d370e2e
--- /dev/null
+++ b/testsuite/synth/issue1140/tb_ent.vhdl
@@ -0,0 +1,49 @@
+entity tb_ent is
+end tb_ent;
+
+library ieee;
+use ieee.std_logic_1164.all;
+use ieee.numeric_std.all;
+
+architecture behav of tb_ent is
+ -- Interrupt mapping register:
+ signal iar : unsigned(15 downto 0) := "0000000010010000";
+ signal ipend : unsigned(3 downto 0) := (others => '0');
+ signal irq : unsigned(3 downto 0);
+ signal clk : std_logic := '0';
+begin
+ dut: entity work.ent
+ generic map (NUM_CHANNELS => 4)
+ port map (iar => iar, ipend => ipend, irq => irq, clk => clk);
+
+ process
+ begin
+ clk <= not clk;
+ wait for 1 ns;
+ end process;
+
+stim:
+ process
+ begin
+ wait for 10 ns;
+ ipend(0) <= '1';
+ wait for 10 ns;
+ ipend(1) <= '1';
+ wait for 10 ns;
+ ipend(2) <= '1';
+ wait for 10 ns;
+ ipend <= (others => '0');
+
+ wait for 10 ns;
+ ipend(3) <= '1';
+ wait for 10 ns;
+ ipend(2) <= '1';
+ wait for 10 ns;
+ ipend(1) <= '1';
+ wait for 10 ns;
+ ipend <= (others => '0');
+
+ wait;
+ end process;
+
+end behav;