Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-001
/
slot-034
/
2a86660a2c269e0748b13809d4dc899da4d7150d
/
.
/
verilog
/
rtl
/
fpga250
/
transmission_gate.v
blob: 623db3abbd8d3c52b5131709edace5bcb79747c0 [
file
] [
log
] [
blame
]
module
transmission_gate
(
inout a
,
inout b
,
input c
);
transmission_gate_cell impl
(.
A
(
a
),
.
B
(
b
),
.
C
(
c
),
.
Cnot
(~
c
));
endmodule