X: std_logic_vector(3 down to 0);
c : Std_logic;
d : bit;
s : std_logic_vector(1 down to 0);
In architecture
x <= c&d&s;
so is this signal assignment in Architecture is correct or wrong
IS bit and std_logic having same condition and is it possible to assign the same to std_logic_vector as in assignment?
To_StdULogicto convert a value of type bit to a value of std_ulogic. – Feb 13 '18 at 19:29