Update mul.sv

This commit is contained in:
Harshini Srinath 2023-06-12 14:00:37 -07:00 committed by GitHub
parent e7ef3d2136
commit be09e66ec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,4 +90,3 @@ module mul #(parameter XLEN) (
// add up partial products; this multi-input add implies CSAs and a final CPA
assign ProdM = PP1M + PP2M + PP3M + PP4M; //ForwardedSrcAE * ForwardedSrcBE;
endmodule