mirror of
https://github.com/YosysHQ/yosys
synced 2026-03-23 04:49:15 +00:00
7 lines
133 B
Verilog
7 lines
133 B
Verilog
module add_chain_8(
|
|
input [15:0] a, b, c, d, e, f, g, h,
|
|
output [15:0] y
|
|
);
|
|
assign y = a + b + c + d + e + f + g + h;
|
|
endmodule
|
|
|