diff options
-rwxr-xr-x | testsuite/synth/issue1095/testsuite.sh | 8 | ||||
-rw-r--r-- | testsuite/synth/issue1095/top.vhdl | 62 |
2 files changed, 70 insertions, 0 deletions
diff --git a/testsuite/synth/issue1095/testsuite.sh b/testsuite/synth/issue1095/testsuite.sh new file mode 100755 index 000000000..cae496e7d --- /dev/null +++ b/testsuite/synth/issue1095/testsuite.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +. ../../testenv.sh + +GHDL_STD_FLAGS=--std=08 +synth top.vhdl -e conf > syn_conf.vhdl + +echo "Test successful" diff --git a/testsuite/synth/issue1095/top.vhdl b/testsuite/synth/issue1095/top.vhdl new file mode 100644 index 000000000..89405084a --- /dev/null +++ b/testsuite/synth/issue1095/top.vhdl @@ -0,0 +1,62 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity xor_gate is + generic ( + INVERT : boolean + ); + port ( + a : in std_logic; + b : in std_logic; + q : out std_logic + ); +end; + +architecture a of xor_gate is +begin + gen: if INVERT generate + q <= not (a xor b); + else generate + q <= a xor b; + end generate; +end; +library ieee; +use ieee.std_logic_1164.all; + +entity top is + port ( + x : in std_logic; + y : in std_logic; + o_custom : out std_logic; + o_and : out std_logic + ); +end; + +architecture a of top is + component comp is + port ( + a : in std_logic; + b : in std_logic; + q : out std_logic + ); + end component; +begin + comp_inst: comp + port map ( + a => x, + b => y, + q => o_custom + ); + + o_and <= x and y; +end; +configuration conf of top is + for a + for comp_inst : comp + use entity work.xor_gate + generic map ( + INVERT => false + ); + end for; + end for; +end configuration; |