X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fieee754%2Fpipeline.py;fp=src%2Fieee754%2Fpipeline.py;h=c7446337981058e35a7f5289bded82281a151c57;hb=77dfbe92a551ba108fe04cb3a33d2d5308174596;hp=f2ec693379abb71dc8e83e03770440e4800564dd;hpb=33ba638b803e14835e3f338b45b827545474ff42;p=ieee754fpu.git diff --git a/src/ieee754/pipeline.py b/src/ieee754/pipeline.py index f2ec6933..c7446337 100644 --- a/src/ieee754/pipeline.py +++ b/src/ieee754/pipeline.py @@ -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