aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ecp5/div_mod.v
diff options
context:
space:
mode:
authorSergeyDegtyar <sndegtyar@gmail.com>2019-08-27 18:28:05 +0300
committerSergeyDegtyar <sndegtyar@gmail.com>2019-08-27 18:28:05 +0300
commit980830f7b82f2a974f43580f61e917f99fbb4e7e (patch)
treeef4b9cfe86945794171527976315924faf99e157 /tests/ecp5/div_mod.v
parent134d3fea909bae02f4f814e3d649658502b44b73 (diff)
downloadyosys-980830f7b82f2a974f43580f61e917f99fbb4e7e.tar.gz
yosys-980830f7b82f2a974f43580f61e917f99fbb4e7e.tar.bz2
yosys-980830f7b82f2a974f43580f61e917f99fbb4e7e.zip
Revert "Add tests for ecp5 architecture."
This reverts commit 134d3fea909bae02f4f814e3d649658502b44b73.
Diffstat (limited to 'tests/ecp5/div_mod.v')
-rw-r--r--tests/ecp5/div_mod.v13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/ecp5/div_mod.v b/tests/ecp5/div_mod.v
deleted file mode 100644
index 64a36707d..000000000
--- a/tests/ecp5/div_mod.v
+++ /dev/null
@@ -1,13 +0,0 @@
-module top
-(
- input [3:0] x,
- input [3:0] y,
-
- output [3:0] A,
- output [3:0] B
- );
-
-assign A = x % y;
-assign B = x / y;
-
-endmodule