aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/efinix/tribuf.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/efinix/tribuf.v')
-rw-r--r--tests/arch/efinix/tribuf.v8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/arch/efinix/tribuf.v b/tests/arch/efinix/tribuf.v
deleted file mode 100644
index c64468253..000000000
--- a/tests/arch/efinix/tribuf.v
+++ /dev/null
@@ -1,8 +0,0 @@
-module tristate (en, i, o);
- input en;
- input i;
- output reg o;
-
- always @(en or i)
- o <= (en)? i : 1'bZ;
-endmodule