G
GDan
Guest
Hi,
signal a : std_logic_vector (7 downto 0)
signal b : std_logic_vector (7 downto 0)
signal c : std_logic_vector (15 downto 0)
....
c(7 downto 0) <= a(7 downto 0);
c(15 downto 8) <= b(7 downto 0);
I don't see why the compiler doesn't accept this arrangement
assertions? Basically a and b are LSB and MSB of a bus.
GD
signal a : std_logic_vector (7 downto 0)
signal b : std_logic_vector (7 downto 0)
signal c : std_logic_vector (15 downto 0)
....
c(7 downto 0) <= a(7 downto 0);
c(15 downto 8) <= b(7 downto 0);
I don't see why the compiler doesn't accept this arrangement
assertions? Basically a and b are LSB and MSB of a bus.
GD