From: Luke Kenneth Casson Leighton Date: Mon, 8 Apr 2019 08:44:30 +0000 (+0100) Subject: whitespace cleanup X-Git-Tag: ls180-24jan2020~1284 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3097b835c0ba1b0df9b20d8e2f48be85794040b4;p=ieee754fpu.git whitespace cleanup --- diff --git a/src/add/singlepipe.py b/src/add/singlepipe.py index acbd1b69..66e41daf 100644 --- a/src/add/singlepipe.py +++ b/src/add/singlepipe.py @@ -687,11 +687,11 @@ class SimpleHandshake(ControlBase): # previous valid and ready with m.If(p_i_valid_p_o_ready): m.d.sync += [r_busy.eq(1), # output valid - eq(self.n.o_data, result), # update output - ] + eq(self.n.o_data, result), # update output + ] # previous invalid or not ready, however next is accepting with m.Elif(n_i_ready): - m.d.sync += [ eq(self.n.o_data, result)] + m.d.sync += [eq(self.n.o_data, result)] # TODO: could still send data here (if there was any) #m.d.sync += self.n.o_valid.eq(0) # ...so set output invalid m.d.sync += r_busy.eq(0) # ...so set output invalid