diff options
Diffstat (limited to 'testsuite/synth/comp03/comp03.vhdl')
-rw-r--r-- | testsuite/synth/comp03/comp03.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/synth/comp03/comp03.vhdl b/testsuite/synth/comp03/comp03.vhdl new file mode 100644 index 000000000..6a8a23b4d --- /dev/null +++ b/testsuite/synth/comp03/comp03.vhdl @@ -0,0 +1,13 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity comp03 is + port (p : std_logic_vector (6 downto 0); + o : out std_logic); +end comp03; + +architecture behav of comp03 is +begin + inst: entity work.sub1 + port map (p => p, o => o); +end behav; |