From e52d581c33248aefc47e7c97ce6978d6bda31bfe Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 14 Feb 2017 05:46:00 +0100 Subject: Add tests for icezum --- testsuite/issue4/novector.vhdl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 testsuite/issue4/novector.vhdl (limited to 'testsuite/issue4') diff --git a/testsuite/issue4/novector.vhdl b/testsuite/issue4/novector.vhdl new file mode 100644 index 0000000..a3c2c46 --- /dev/null +++ b/testsuite/issue4/novector.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity no_vector is + port (led0: out std_logic); +end no_vector; + +architecture synth of no_vector is + +signal nv : std_logic; + +begin + nv <= '1'; + led0 <= nv; +end synth; -- cgit v1.2.3