cookie-cut start on div pipe
[soc.git] / src / soc / fu / div / pipe_data.py
1 from nmigen import Signal, Const
2 from soc.fu.pipe_data import IntegerData
3 from soc.fu.alu.pipe_data import ALUOutputData, CommonPipeSpec
4 from soc.fu.logical.pipe_data import LogicalInputData
5 from soc.fu.logical.logical_input_record import CompLogicalOpSubset
6
7
8 class DivPipeSpec(CommonPipeSpec):
9 regspec = (LogicalInputData.regspec, ALUOutputData.regspec)
10 opsubsetkls = CompLogicalOpSubset