1
0
mirror of synced 2026-04-24 19:40:49 +00:00
Files
YosysHQ.yosys/manual/PRESENTATION_ExAdv/macc_simple_xmap.v
2014-02-20 12:46:29 +01:00

7 lines
116 B
Verilog

module macc_16_16_32(a, b, c, y);
input [15:0] a, b;
input [31:0] c;
output [31:0] y;
assign y = a*b + c;
endmodule