blob: 0e6494a19bc628143ad8f2e930443b2a0c450156 [file] [log] [blame]
module transmission_gate_cell(inout A, inout B, input C, input Cnot);
// Use the verilog primitive where available, in which case c_not is not
// used.
tranif1(A, B, C);
endmodule