Question.3
Which line of code implements the RTL diagram below, merging three wires into a 3-bit bus?
Select Answer
assign y = {a, b, c};
assign y = a & b & c;
assign y = a + b + c;
assign y = {c, b, a};