yosys/tests/csa_tree/add_two_chains.v

10 lines
179 B
Verilog
Raw Normal View History

2026-03-13 12:09:50 +01:00
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