summaryrefslogtreecommitdiff
path: root/tests/asicworld/code_hdl_models_t_gate_switch.v
blob: 1bff66af8fd5fcf484b52cc0b7418e790e8c2d49 (plain)
1
2
3
4
5
6
7
8
9
10
11
module t_gate_switch (L,R,nC,C);
 inout L;
 inout R;
 input nC;
 input C;

 //Syntax: keyword unique_name (drain. source, gate);
 pmos p1 (L,R,nC);
 nmos p2 (L,R,C);

endmodule