From: Luke Kenneth Casson Leighton Date: Wed, 31 Jul 2019 00:20:10 +0000 (+0100) Subject: remove use of FPState X-Git-Tag: ls180-24jan2020~657 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f56abb5c4310222042eb4c9398fe4de9301382e;p=ieee754fpu.git remove use of FPState --- diff --git a/src/ieee754/fpadd/addstages.py b/src/ieee754/fpadd/addstages.py index f875ef92..75d931d1 100644 --- a/src/ieee754/fpadd/addstages.py +++ b/src/ieee754/fpadd/addstages.py @@ -21,7 +21,6 @@ class FPAddAlignSingleAdd(DynamicPipe): #FPState.__init__(self, "align") self.pspec = pspec super().__init__(pspec) - self.a1o = self.ospec() def ispec(self): return FPSCData(self.pspec, True) @@ -46,8 +45,3 @@ class FPAddAlignSingleAdd(DynamicPipe): def process(self, i): return self.o - def action(self, m): - m.d.sync += self.a1o.eq(self.process(None)) - m.next = "normalise_1" - -