yosys/manual/APPNOTE_011_Design_Investigation/sumprod.v
2013-11-29 16:42:49 +01:00

12 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