3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 09:55:20 +00:00
yosys/docs/resources/PRESENTATION_ExAdv/macc_xilinx_xmap.v
2023-08-07 12:58:40 +12:00

11 lines
130 B
Verilog

module DSP48_MACC (a, b, c, y);
input [17:0] a;
input [24:0] b;
input [47:0] c;
output [47:0] y;
assign y = a*b + c;
endmodule