diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-04 08:24:37 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-17 17:10:42 +0200 |
commit | d37cd267a56295737e95f5bc5e6f446c27605639 (patch) | |
tree | d9d46335f56629c477708cc7e8a68252c3fb2c5e /tests/xilinx/div_mod.v | |
parent | a7fbc8c3fe1e2ad867ffc3456943644e70ab2575 (diff) | |
download | yosys-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.v | 13 |
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 |