From: Luke Kenneth Casson Leighton Date: Fri, 18 Sep 2020 13:11:24 +0000 (+0100) Subject: can remove unneeded overrides of Prev/Next Control X-Git-Tag: semi_working_ecp5~8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0674e08124af60bc351bf383c9cd44d617d690b9;p=soc.git can remove unneeded overrides of Prev/Next Control --- diff --git a/src/soc/fu/div/fsm.py b/src/soc/fu/div/fsm.py index f5398b10..9083d6b9 100644 --- a/src/soc/fu/div/fsm.py +++ b/src/soc/fu/div/fsm.py @@ -52,20 +52,6 @@ class FSMDivCoreOutputData: self.remainder.eq(rhs.remainder)] -class FSMDivCorePrevControl(PrevControl): - def __init__(self, pspec): - super().__init__() - self.pspec = pspec - self.data_i = CoreInputData(pspec) - - -class FSMDivCoreNextControl(NextControl): - def __init__(self, pspec): - super().__init__() - self.pspec = pspec - self.data_o = CoreOutputData(pspec) - - class DivStateNext(Elaboratable): def __init__(self, quotient_width): self.quotient_width = quotient_width