more whitespace
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 5 Feb 2020 16:49:26 +0000 (16:49 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 5 Feb 2020 16:49:26 +0000 (16:49 +0000)
src/ieee754/part_cmp/eq_gt_ge.py

index 0f2854d7e433f48a7386f24756d75a9f9138b89b..7d7e4ccc56c5e6e3c2d8027a4ab662e9f9fe57e0 100644 (file)
@@ -46,7 +46,8 @@ class PartitionedEqGtGe(Elaboratable):
         comb = m.d.comb
         m.submodules.gtc = gtc = GTCombiner(self.mwidth)
 
-        # make a series of "eqs" and "gts", splitting a and b into partition chunks
+        # make a series of "eqs" and "gts", splitting a and b into
+        # partition chunks
         eqs = Signal(self.mwidth, reset_less=True)
         eql = []
         gts = Signal(self.mwidth, reset_less=True)
@@ -62,9 +63,10 @@ class PartitionedEqGtGe(Elaboratable):
         comb += eqs.eq(Cat(*eql))
         comb += gts.eq(Cat(*gtl))
 
-        # Signal to control the constant injected into the partition next to a closed gate
+        # control the constant injected into the partition
+        # next to a closed gate
         aux_input = Signal()
-        # Signal to enable or disable the gt input for the gt partition combiner
+        # enable or disable the gt input for the gt partition combiner
         gt_en = Signal()
 
         with m.Switch(self.opcode):
@@ -85,5 +87,4 @@ class PartitionedEqGtGe(Elaboratable):
         comb += gtc.gt_en.eq(gt_en)
         comb += self.output.eq(gtc.outputs)
 
-
         return m