From 74792263782bfe0827b368e8097fde5c9ac3cd6e Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 6 Apr 2019 02:09:27 +0100 Subject: [PATCH] remove n stage_ctl --- src/add/singlepipe.py | 36 ++++++++---------------------------- 1 file changed, 8 insertions(+), 28 deletions(-) diff --git a/src/add/singlepipe.py b/src/add/singlepipe.py index 668877be..1feb0f18 100644 --- a/src/add/singlepipe.py +++ b/src/add/singlepipe.py @@ -217,27 +217,10 @@ class NextControl: * i_ready: input from next stage indicating that it can accept data * o_data : an output - added by the user of this class """ - def __init__(self, stage_ctl=False): - self.stage_ctl = stage_ctl - self._o_valid = Signal(name="n_o_valid") # self out>> next + def __init__(self): + self.o_valid = Signal(name="n_o_valid") # self out>> next self.i_ready = Signal(name="n_i_ready") # self <