Guest
we can do stuff like this:
signal some_signal : std_logic_vector(15 downto 0);
some_signal <= (15 downto 12 => '1', others => '0');
BUT.... is there someway we can do something like this:
some_signal <= (15 downto 12 => "1010", others => '0');
Thanks in advance
signal some_signal : std_logic_vector(15 downto 0);
some_signal <= (15 downto 12 => '1', others => '0');
BUT.... is there someway we can do something like this:
some_signal <= (15 downto 12 => "1010", others => '0');
Thanks in advance