aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/simple01/tb_simple01.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-06-30 21:15:32 +0200
committerTristan Gingold <tgingold@free.fr>2019-06-30 21:15:32 +0200
commit14f3b8b09360980f1b8b732c40b840cd4fc3e048 (patch)
tree42ec93fad9717d62f2dbb3ac12ef9bb2feea4f97 /testsuite/synth/simple01/tb_simple01.vhdl
parent09fe97ce90ecf0dee26f80873e9697d2b68b7a24 (diff)
downloadghdl-14f3b8b09360980f1b8b732c40b840cd4fc3e048.tar.gz
ghdl-14f3b8b09360980f1b8b732c40b840cd4fc3e048.tar.bz2
ghdl-14f3b8b09360980f1b8b732c40b840cd4fc3e048.zip
testsuite/synth: add simple01
Diffstat (limited to 'testsuite/synth/simple01/tb_simple01.vhdl')
-rw-r--r--testsuite/synth/simple01/tb_simple01.vhdl31
1 files changed, 31 insertions, 0 deletions
diff --git a/testsuite/synth/simple01/tb_simple01.vhdl b/testsuite/synth/simple01/tb_simple01.vhdl
new file mode 100644
index 000000000..634ffa396
--- /dev/null
+++ b/testsuite/synth/simple01/tb_simple01.vhdl
@@ -0,0 +1,31 @@
+entity tb_simple01 is
+end tb_simple01;
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+architecture behav of tb_simple01 is
+ signal a : std_logic;
+ signal b : std_logic;
+ signal c : std_logic;
+ signal z : std_logic;
+begin
+ dut: entity work.simple01
+ port map (a, b, c, z);
+
+ process
+ constant av : std_logic_vector := b"1101";
+ constant bv : std_logic_vector := b"0111";
+ constant cv : std_logic_vector := b"0011";
+ constant zv : std_logic_vector := b"0111";
+ begin
+ for i in av'range loop
+ a <= av (i);
+ b <= bv (i);
+ c <= cv (i);
+ wait for 1 ns;
+ assert z = zv(i) severity failure;
+ end loop;
+ wait;
+ end process;
+end behav;