aboutsummaryrefslogtreecommitdiffstats
path: root/tests/efinix/tribuf.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/efinix/tribuf.v')
-rw-r--r--tests/efinix/tribuf.v21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/efinix/tribuf.v b/tests/efinix/tribuf.v
index 3fa6eb6c6..c64468253 100644
--- a/tests/efinix/tribuf.v
+++ b/tests/efinix/tribuf.v
@@ -2,28 +2,7 @@ module tristate (en, i, o);
input en;
input i;
output reg o;
-`ifndef BUG
always @(en or i)
o <= (en)? i : 1'bZ;
-`else
-
- always @(en or i)
- o <= (en)? ~i : 1'bZ;
-`endif
-endmodule
-
-
-module top (
-input en,
-input a,
-output b
-);
-
-tristate u_tri (
- .en (en ),
- .i (a ),
- .o (b )
- );
-
endmodule