aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ecp5/tribuf.v
diff options
context:
space:
mode:
authorSergeyDegtyar <sndegtyar@gmail.com>2019-08-28 09:47:03 +0300
committerSergeyDegtyar <sndegtyar@gmail.com>2019-08-28 09:47:03 +0300
commit2270ead09fb4695442c66fe5c06445235f390f2b (patch)
tree31d55d4e9a9b8af8ca515777af28df492e86f2af /tests/ecp5/tribuf.v
parent980830f7b82f2a974f43580f61e917f99fbb4e7e (diff)
downloadyosys-2270ead09fb4695442c66fe5c06445235f390f2b.tar.gz
yosys-2270ead09fb4695442c66fe5c06445235f390f2b.tar.bz2
yosys-2270ead09fb4695442c66fe5c06445235f390f2b.zip
Add tests for ecp5
Diffstat (limited to 'tests/ecp5/tribuf.v')
-rw-r--r--tests/ecp5/tribuf.v23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/ecp5/tribuf.v b/tests/ecp5/tribuf.v
new file mode 100644
index 000000000..870a02584
--- /dev/null
+++ b/tests/ecp5/tribuf.v
@@ -0,0 +1,23 @@
+module tristate (en, i, o);
+ input en;
+ input i;
+ output o;
+
+ assign o = en ? i : 1'bz;
+
+endmodule
+
+
+module top (
+input en,
+input a,
+output b
+);
+
+tristate u_tri (
+ .en (en ),
+ .i (a ),
+ .o (b )
+ );
+
+endmodule