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