aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-07-26 15:30:51 -0700
committerEddie Hung <eddie@fpgeh.com>2019-07-26 15:30:51 -0700
commit2f71c2c2198b05e216524feb94b66d14c9c433c0 (patch)
tree66389127585c86679e50da83d73301b83a225b73 /techlibs
parent07e38d8d5c9d270404f68072b905b1dd43ced24b (diff)
downloadyosys-2f71c2c2198b05e216524feb94b66d14c9c433c0.tar.gz
yosys-2f71c2c2198b05e216524feb94b66d14c9c433c0.tar.bz2
yosys-2f71c2c2198b05e216524feb94b66d14c9c433c0.zip
Fix spacing
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/common/mul2dsp.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/techlibs/common/mul2dsp.v b/techlibs/common/mul2dsp.v
index a8c2dcccc..678de3796 100644
--- a/techlibs/common/mul2dsp.v
+++ b/techlibs/common/mul2dsp.v
@@ -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