From 0674e08124af60bc351bf383c9cd44d617d690b9 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 18 Sep 2020 14:11:24 +0100 Subject: [PATCH] can remove unneeded overrides of Prev/Next Control --- src/soc/fu/div/fsm.py | 14 -------------- 1 file changed, 14 deletions(-) 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 -- 2.30.2