aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/ice40/div_mod.v
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-10-18 12:20:35 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-10-18 12:20:35 +0200
commit477702b8c91bb7780ac80b25c8ad659cd40b445d (patch)
tree8d11b79822187dbac8b03c7314eb6b4d8959a7f1 /tests/arch/ice40/div_mod.v
parent5603595e5c0efd2afc9ba810e6e5992e5d81d44c (diff)
downloadyosys-477702b8c91bb7780ac80b25c8ad659cd40b445d.tar.gz
yosys-477702b8c91bb7780ac80b25c8ad659cd40b445d.tar.bz2
yosys-477702b8c91bb7780ac80b25c8ad659cd40b445d.zip
Remove not needed tests
Diffstat (limited to 'tests/arch/ice40/div_mod.v')
-rw-r--r--tests/arch/ice40/div_mod.v13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/arch/ice40/div_mod.v b/tests/arch/ice40/div_mod.v
deleted file mode 100644
index 64a36707d..000000000
--- a/tests/arch/ice40/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