fix test_fpmul_pipe_32.py after new PipelineSpec class added
[ieee754fpu.git] / src / ieee754 / pipeline.py
index f2ec693379abb71dc8e83e03770440e4800564dd..c7446337981058e35a7f5289bded82281a151c57 100644 (file)
@@ -6,12 +6,13 @@ class PipelineSpec:
     """ Pipeline Specification base class.
 
     :attribute width: FIXME: document
-    :attribute id_width: FIXME: document
-    :attribute opcode_width: FIXME: document
+    :attribute id_wid: FIXME: document
+    :attribute op_wid: FIXME: document
     """
 
     def __init__(self, width, id_width, opcode_width):
         """ Create a PipelineSpec. """
         self.width = width
-        self.id_width = id_width
-        self.opcode_width = opcode_width
+        self.id_wid = id_width
+        self.op_wid = opcode_width
+        self.opkls = None