From 3097b835c0ba1b0df9b20d8e2f48be85794040b4 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 8 Apr 2019 09:44:30 +0100 Subject: [PATCH] whitespace cleanup --- src/add/singlepipe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.30.2