aboutsummaryrefslogtreecommitdiffstats
path: root/tests/xilinx/div_mod.v
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-10-04 08:24:37 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-10-17 17:10:42 +0200
commitd37cd267a56295737e95f5bc5e6f446c27605639 (patch)
treed9d46335f56629c477708cc7e8a68252c3fb2c5e /tests/xilinx/div_mod.v
parenta7fbc8c3fe1e2ad867ffc3456943644e70ab2575 (diff)
downloadyosys-d37cd267a56295737e95f5bc5e6f446c27605639.tar.gz
yosys-d37cd267a56295737e95f5bc5e6f446c27605639.tar.bz2
yosys-d37cd267a56295737e95f5bc5e6f446c27605639.zip
Removed alu and div_mod test as agreed, ignore generated files
Diffstat (limited to 'tests/xilinx/div_mod.v')
-rw-r--r--tests/xilinx/div_mod.v13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/xilinx/div_mod.v b/tests/xilinx/div_mod.v
deleted file mode 100644
index 64a36707d..000000000
--- a/tests/xilinx/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