Skip to content

Commit

Permalink
migen/flow/actor: fix sop/eop validation in PipelinedActor (stb can b…
Browse files Browse the repository at this point in the history
…e inactive when pipe_ce is active)
  • Loading branch information
enjoy-digital committed Aug 9, 2015
1 parent 9c902bc commit 6466672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migen/flow/actor.py
Expand Up @@ -165,8 +165,8 @@ def build_binary_control(self, sink, source, latency):
self.busy.eq(busy)
]
if sink.description.packetized:
sop = sink.sop
eop = sink.eop
sop = sink.stb & sink.sop
eop = sink.stb & sink.eop
for i in range(latency):
sop_n = Signal()
eop_n = Signal()
Expand Down

0 comments on commit 6466672

Please sign in to comment.