Fix spacing

This commit is contained in:
Eddie Hung 2019-07-26 15:30:51 -07:00
parent 07e38d8d5c
commit 2f71c2c219
1 changed files with 3 additions and 3 deletions

View File

@ -149,9 +149,9 @@ module \$__mul (A, B, Y);
.B(B),
.Y(partial[i])
);
// TODO: Currently a 'cascade' approach to summing the partial
// products is taken here, but a more efficient 'binary
// reduction' approach also exists...
// TODO: Currently a 'cascade' approach to summing the partial
// products is taken here, but a more efficient 'binary
// reduction' approach also exists...
assign partial_sum[i] = (partial[i] << i*(`DSP_A_MAXWIDTH-sign_headroom)) + partial_sum[i-1];
end