diff options
Diffstat (limited to 'testsuite/synth/aggr02/targ01.vhdl')
-rw-r--r-- | testsuite/synth/aggr02/targ01.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/synth/aggr02/targ01.vhdl b/testsuite/synth/aggr02/targ01.vhdl new file mode 100644 index 000000000..f794fc8dc --- /dev/null +++ b/testsuite/synth/aggr02/targ01.vhdl @@ -0,0 +1,12 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity targ01 is + port (v : std_logic_vector (2 downto 0); + o0, o1, o2 : out std_logic); +end targ01; + +architecture behav of targ01 is +begin + (o2, o1, o0) <= v; +end behav; |