aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ecp5/div_mod.v
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-10-04 08:41:53 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-10-04 08:41:53 +0200
commitd19f765a581ac465a7f7cea22f1d96c9da9cbe01 (patch)
treeb865dc32794ae8744cc4031a3db5ce2c493aba19 /tests/ecp5/div_mod.v
parent1caaf5149258ff84ac2a6532c26e9ffb076183a9 (diff)
downloadyosys-d19f765a581ac465a7f7cea22f1d96c9da9cbe01.tar.gz
yosys-d19f765a581ac465a7f7cea22f1d96c9da9cbe01.tar.bz2
yosys-d19f765a581ac465a7f7cea22f1d96c9da9cbe01.zip
Removed alu and div_mod tests as agreed
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