From 1a576e5c83675c9e8d585e18df0cccf8ffeb5592 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 16 Jun 2012 22:38:45 +0200 Subject: [PATCH] flow/actor: fix busy signal generation for pipelined actors --- migen/flow/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2