verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / slice01 / slice03.vhdl
blob7af0cdfe78912fb9e40eedf07f244eb524006ee1
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity slice03 is
5   port (di : std_logic_vector(7 downto 0);
6         dout : out std_logic_vector (3 downto 0));
7 end slice03;
9 architecture behav of slice03 is
10 begin
11   dout <= di (7 downto 4)(7 downto 4);
12 end behav;