add link to regspecs on wiki
[soc.git] / src / soc / fu / mul / pipe_data.py
1 from soc.fu.alu.alu_input_record import CompALUOpSubset
2 from soc.fu.pipe_data import IntegerData, CommonPipeSpec
3 from soc.fu.alu.pipe_data import ALUOutputData
4 from soc.fu.shift_rot.pipe_data import ShoftRotInputData
5
6
7 # TODO: replace CompALUOpSubset with CompShiftRotOpSubset
8 class ShiftRotPipeSpec(CommonPipeSpec):
9 regspec = (ShiftRotInputData.regspec, ALUOutputData.regspec)
10 opsubsetkls = CompALUOpSubset