forked from M-Labs/artiq
rtio/sed: remove uneeded yield in test_sed_output_network
This commit is contained in:
parent
666bc600a2
commit
64d9381c36
|
@ -18,7 +18,6 @@ def simulate(input_events):
|
||||||
dut = output_network.OutputNetwork(LANE_COUNT, LANE_COUNT*4, layout_payload)
|
dut = output_network.OutputNetwork(LANE_COUNT, LANE_COUNT*4, layout_payload)
|
||||||
output = []
|
output = []
|
||||||
def gen():
|
def gen():
|
||||||
yield
|
|
||||||
for n, input_event in enumerate(input_events):
|
for n, input_event in enumerate(input_events):
|
||||||
yield dut.input[n].valid.eq(1)
|
yield dut.input[n].valid.eq(1)
|
||||||
yield dut.input[n].seqn.eq(n)
|
yield dut.input[n].seqn.eq(n)
|
||||||
|
|
Loading…
Reference in New Issue