yosys/docs/source/code_examples/macc/macc_simple_test_02.v

7 lines
127 B
Verilog
Raw Normal View History

2014-02-20 12:46:29 +01:00
module test(a, b, c, d, x, y);
input [15:0] a, b, c, d;
input [31:0] x;
output [31:0] y;
assign y = a*b + (c*d + x);
endmodule