aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/comp03/comp04.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/comp03/comp04.vhdl')
-rw-r--r--testsuite/synth/comp03/comp04.vhdl14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/synth/comp03/comp04.vhdl b/testsuite/synth/comp03/comp04.vhdl
new file mode 100644
index 000000000..7663cf490
--- /dev/null
+++ b/testsuite/synth/comp03/comp04.vhdl
@@ -0,0 +1,14 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity comp04 is
+ port (p : std_logic_vector (6 downto 0);
+ o : out std_logic);
+end comp04;
+
+architecture behav of comp04 is
+begin
+ inst: entity work.sub2
+ generic map (width => 8)
+ port map (p => p, o => o);
+end behav;