blob: 636ae48b6c63d07cd3ed470f0e24023b0b30b3ba [file] [log] [blame]
module transmission_gate_oneway(output a, input b, input c);
assign a = c? b: 1'bz;
endmodule