class CompFSMOpSubset(CompOpSubsetBase):
def __init__(self, name=None):
- layout = (('dir', 1),
+ layout = (('sdir', 1),
)
super().__init__(layout, name=name)
def __init__(self, width):
self.data = Signal(width, name="p_data_i")
self.shift = Signal(width, name="p_shift_i")
- self.sdir = Signal(name="p_sdir_i")
self.ctx = Dummy() # comply with CompALU API
def _get_data(self):
next_count.eq(self.p.data_i.shift),
]
# capture the direction bit as well
- m.d.sync += direction.eq(self.p.data_i.sdir)
+ m.d.sync += direction.eq(self.op.sdir)
with m.If(self.p.valid_i):
# Leave IDLE when data arrives
with m.If(next_count == 0):
return m
def __iter__(self):
+ yield self.op.sdir
yield self.p.data_i.data
yield self.p.data_i.shift
- yield self.p.data_i.sdir
yield self.p.valid_i
yield self.p.ready_o
yield self.n.ready_i
# present input data and assert valid_i
yield dut.p.data_i.data.eq(data)
yield dut.p.data_i.shift.eq(shift)
- yield dut.p.data_i.sdir.eq(direction)
+ yield dut.op.sdir.eq(direction)
yield dut.p.valid_i.eq(1)
yield
# wait for p.ready_o to be asserted
yield dut.p.valid_i.eq(0)
yield dut.p.data_i.data.eq(0)
yield dut.p.data_i.shift.eq(0)
- yield dut.p.data_i.sdir.eq(0)
+ yield dut.op.sdir.eq(0)
def receive(expected):
# signal readiness to receive data