1
0
mirror of synced 2026-05-02 22:34:25 +00:00
Files
YosysHQ.yosys/manual/APPNOTE_011_Design_Investigation/sumprod.v
2013-11-29 16:42:49 +01:00

13 lines
177 B
Verilog

module sumprod(a, b, c, sum, prod);
input [7:0] a, b, c;
output [7:0] sum, prod;
{* sumstuff *}
assign sum = a + b + c;
{* *}
assign prod = a * b * c;
endmodule