entity multiplexer is port ( S: in bit; a, b: in bit_vector (0 to 3); y: out bit_vector (0 to 3); ); architecture behaviour of multiplexer is signal a, b, y: bit_vector (0 to 3); begin end behaviour;