@@ -0,0 +1,6 @@
module mux2 #(width=32)
(input logic [width-1:0] left, right,
input logic select,
output logic [width-1:0] out);
assign out = select ? right : left;
endmodule
The note is not visible to the blocked user.