mirror of
https://github.com/YosysHQ/yosys
synced 2026-03-23 12:59:15 +00:00
10 lines
161 B
Verilog
10 lines
161 B
Verilog
module add_multi_fanout(
|
|
input [7:0] a, b, c,
|
|
output [7:0] mid,
|
|
output [7:0] y
|
|
);
|
|
wire [7:0] ab = a + b;
|
|
assign mid = ab;
|
|
assign y = ab + c;
|
|
endmodule
|
|
|