From: Aleksandar Kostovic Date: Fri, 5 Apr 2019 04:57:06 +0000 (+0200) Subject: Fixed indentation issiues with fmul.py X-Git-Tag: ls180-24jan2020~1342 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=67b656982e2ab54d99f09fb5d25a0b2a72de5501;p=ieee754fpu.git Fixed indentation issiues with fmul.py --- diff --git a/src/add/fmul.py b/src/add/fmul.py index 25944a83..16167514 100644 --- a/src/add/fmul.py +++ b/src/add/fmul.py @@ -16,11 +16,11 @@ class FPMUL(FPBase): self.in_b = FPOp(width) self.out_z = FPOp(width) - self.states = [] + self.states = [] def add_state(self, state): - self.states.append(state) - return state + self.states.append(state) + return state def get_fragment(self, platform=None): """ creates the HDL code-fragment for FPMUL @@ -51,14 +51,14 @@ class FPMUL(FPBase): with m.State("get_a"): res = self.get_op(m, self.in_a, a, "get_b") - m.d.sync += eq([a, self.in_a.ack], res) + m.d.sync += eq([a, self.in_a.ack], res) # ****** # gets operand b with m.State("get_b"): res = self.get_op(m, self.in_b, b, "special_cases") - m.d.sync += eq([b, self.in_b.ack], res) + m.d.sync += eq([b, self.in_b.ack], res) # ****** # special cases