module trin(Y, E, F); parameter n = 8; input [n-1:0] Y; input E; output [n-1:0] F; wire [n-1:0] F; assign F = E ? Y : 'bz; endmodule