From: Sebastien Bourdeauducq Date: Sat, 16 Jun 2012 20:38:45 +0000 (+0200) Subject: flow/actor: fix busy signal generation for pipelined actors X-Git-Tag: 24jan2021_ls180~2099^2~913 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a576e5c83675c9e8d585e18df0cccf8ffeb5592;p=litex.git flow/actor: fix busy signal generation for pipelined actors --- diff --git a/migen/flow/actor.py b/migen/flow/actor.py index 90049701..ac96e680 100644 --- a/migen/flow/actor.py +++ b/migen/flow/actor.py @@ -154,7 +154,7 @@ class PipelinedActor(BinaryActor): self.pipe_ce.eq(ack_i | ~last_valid), ack_o.eq(self.pipe_ce), stb_o.eq(last_valid), - busy.eq(optree("|", [valid[i] for i in range(self.latency)])) + self.busy.eq(optree("|", [valid[i] for i in range(self.latency)])) ] return Fragment(comb, sync)