pass on stop bits as well
[ieee754fpu.git] / src / nmutil / test / test_inout_unary_mux_cancel_pipe.py
index 6b40332f4556ad5fcab2d67d2cfe1de3d94b795d..6e85f3a1286a3adf64247de75ad0e2c7b3d97348 100644 (file)
@@ -140,7 +140,7 @@ class TestPriorityMuxPipe(PriorityCombMuxInPipe):
         self.num_rows = num_rows
         stage = PassThroughStage()
         PriorityCombMuxInPipe.__init__(self, stage,
-                                       p_len=self.num_rows, masklen=1)
+                                       p_len=self.num_rows, maskwid=1)
 
 
 class OutputTest:
@@ -185,7 +185,7 @@ class TestMuxOutPipe(CombMuxOutPipe):
         self.num_rows = num_rows
         stage = PassThroughStage()
         CombMuxOutPipe.__init__(self, stage, n_len=self.num_rows,
-                                masklen=1)
+                                maskwid=1)
 
 
 class TestInOutPipe(Elaboratable):