aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1007/test_wrapper.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1007/test_wrapper.vhdl')
-rw-r--r--testsuite/synth/issue1007/test_wrapper.vhdl28
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/synth/issue1007/test_wrapper.vhdl b/testsuite/synth/issue1007/test_wrapper.vhdl
new file mode 100644
index 000000000..5fced5cb8
--- /dev/null
+++ b/testsuite/synth/issue1007/test_wrapper.vhdl
@@ -0,0 +1,28 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity test_wrapper is
+ port(
+ val1_out : out std_logic;
+ val2_out : out std_logic
+ );
+end test_wrapper;
+
+architecture rtl of test_wrapper is
+begin
+ entity_0 : entity work.test_entity
+ generic map (
+ DO_GEN => true
+ )
+ port map (
+ val_out => val1_out
+ );
+
+ entity_1 : entity work.test_entity
+ generic map (
+ DO_GEN => false
+ )
+ port map (
+ val_out => val2_out
+ );
+end;