mirror of
https://github.com/YosysHQ/yosys
synced 2026-04-23 12:23:32 +00:00
Edge case tests.
This commit is contained in:
parent
8d0ecbcdc0
commit
b6ea0bb4cc
10 changed files with 199 additions and 0 deletions
6
tests/csa_tree/add_multi_const.v
Normal file
6
tests/csa_tree/add_multi_const.v
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
module add_multi_const(
|
||||
input [7:0] x,
|
||||
output [7:0] y
|
||||
);
|
||||
assign y = 8'd1 + 8'd2 + 8'd3 + x;
|
||||
endmodule
|
||||
Loading…
Add table
Add a link
Reference in a new issue