e19*_*001 4 hardware verilog synthesis
假设我有这样的乘数代码,
module multiply(
output [63:0] result,
input [31:0] a,
input [31:0] b
);
assign result = a * b;
endmodule
Run Code Online (Sandbox Code Playgroud)
这会产生很多门.
应该使用什么更好的方法来实现组合乘法器?