blob: 4b7d61a79eab4ce402ac81b40a9e35e77449eb9c [file] [log] [blame] [edit]
`default_nettype none
module BB(input I, T, output O, inout B);
assign B = T ? 1'bz : I;
assign O = B;
endmodule