aboutsummaryrefslogtreecommitdiffstats
path: root/tests/xilinx/tribuf.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/xilinx/tribuf.v')
-rw-r--r--tests/xilinx/tribuf.v15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/xilinx/tribuf.v b/tests/xilinx/tribuf.v
index 75149d8ba..c64468253 100644
--- a/tests/xilinx/tribuf.v
+++ b/tests/xilinx/tribuf.v
@@ -6,18 +6,3 @@ module tristate (en, i, o);
always @(en or i)
o <= (en)? i : 1'bZ;
endmodule
-
-
-module top (
-input en,
-input a,
-output b
-);
-
-tristate u_tri (
- .en (en ),
- .i (a ),
- .o (b )
- );
-
-endmodule