aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opt/ice40_carry.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-12-16 15:54:26 +0100
committerGitHub <noreply@github.com>2018-12-16 15:54:26 +0100
commit2a681909dff173f63659d7c882137e53ad768ce8 (patch)
treeb0e51b09eb3ce4f1ad3e071b25bae4f43619f55e /tests/opt/ice40_carry.v
parenta2154c1be0842541d04e2d9e0ebac9ccb3b472be (diff)
parent7ff5a9db2d17c384260c2220c9205a7b4891f001 (diff)
downloadyosys-2a681909dff173f63659d7c882137e53ad768ce8.tar.gz
yosys-2a681909dff173f63659d7c882137e53ad768ce8.tar.bz2
yosys-2a681909dff173f63659d7c882137e53ad768ce8.zip
Merge pull request #724 from whitequark/equiv_opt
equiv_opt: new command, for verifying optimization passes
Diffstat (limited to 'tests/opt/ice40_carry.v')
-rw-r--r--tests/opt/ice40_carry.v3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/opt/ice40_carry.v b/tests/opt/ice40_carry.v
deleted file mode 100644
index ed938932a..000000000
--- a/tests/opt/ice40_carry.v
+++ /dev/null
@@ -1,3 +0,0 @@
-module SB_CARRY (output CO, input I0, I1, CI);
- assign CO = (I0 && I1) || ((I0 || I1) && CI);
-endmodule