move flexible ports fn to MultiOutControlBase
[ieee754fpu.git] / src / add / test_outmux_pipe.py
index 3e8a5559d17a28a30dd54de187e5a664e06d5e3a..67b0313240d428ad1e4863b850a030561138dc1d 100644 (file)
@@ -221,15 +221,6 @@ class TestPriorityMuxPipe(CombMuxOutPipe):
         stage = PassThroughStage()
         CombMuxOutPipe.__init__(self, stage, n_len=self.num_rows)
 
-    def ports(self):
-        res = [self.p.i_valid, self.p.o_ready] + \
-                self.p.i_data.ports()
-        for i in range(len(self.n)):
-            res += [self.n[i].i_ready, self.n[i].o_valid] + \
-                    [self.n[i].o_data]
-                    #self.n[i].o_data.ports()
-        return res
-
 
 class TestSyncToPriorityPipe:
     def __init__(self):