From fb47ca7cefaa201cd281b6f59226b7a8925c4cc7 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 5 Feb 2020 16:49:26 +0000 Subject: [PATCH] more whitespace --- src/ieee754/part_cmp/eq_gt_ge.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ieee754/part_cmp/eq_gt_ge.py b/src/ieee754/part_cmp/eq_gt_ge.py index 0f2854d7..7d7e4ccc 100644 --- a/src/ieee754/part_cmp/eq_gt_ge.py +++ b/src/ieee754/part_cmp/eq_gt_ge.py @@ -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 -- 2.30.2