Hello all! I'm new to VHDL and i need some help to understand a statement whitch uses [COLOR=Red][I]range => '0'[/I][/COLOR] ; that's a part of the code architecture Behavioral of hb_fir is .............. .............. type tab_reg is array (K downto 0) of signed(15 downto 0) signal reg2 :tab_reg; ............. ............. [B][I][COLOR=Red]reg2(1) <= (reg2(1)'range => '0'); [COLOR=Black]whats this do?[/COLOR] [/COLOR][/I][/B] ............ ............ ............ end Behavioral;