summaryrefslogtreecommitdiff
path: root/tests/asicworld/code_hdl_models_t_gate_switch.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/asicworld/code_hdl_models_t_gate_switch.v')
-rw-r--r--tests/asicworld/code_hdl_models_t_gate_switch.v11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/asicworld/code_hdl_models_t_gate_switch.v b/tests/asicworld/code_hdl_models_t_gate_switch.v
deleted file mode 100644
index 5a7e0eaf..00000000
--- a/tests/asicworld/code_hdl_models_t_gate_switch.v
+++ /dev/null
@@ -1,11 +0,0 @@
-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