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?