diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-18 12:20:35 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-10-18 12:20:35 +0200 |
commit | 477702b8c91bb7780ac80b25c8ad659cd40b445d (patch) | |
tree | 8d11b79822187dbac8b03c7314eb6b4d8959a7f1 /tests/arch/ice40/div_mod.v | |
parent | 5603595e5c0efd2afc9ba810e6e5992e5d81d44c (diff) | |
download | yosys-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.v | 13 |
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 |