3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-23 04:49:15 +00:00
yosys/tests/csa_tree/add_two_chains.v
2026-03-13 12:09:50 +01:00

9 lines
179 B
Verilog

module add_two_chains(
input [7:0] a, b, c, d,
input [7:0] e, f, g, h,
output [7:0] y1,
output [7:0] y2
);
assign y1 = a + b + c + d;
assign y2 = e + f + g + h;
endmodule