aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ice40/div_mod.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ice40/div_mod.v')
-rw-r--r--tests/ice40/div_mod.v13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/ice40/div_mod.v b/tests/ice40/div_mod.v
deleted file mode 100644
index 64a36707d..000000000
--- a/tests/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