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_simple_test.v
2023-08-07 12:58:40 +12:00

7 lines
119 B
Verilog

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