flow/actor: fix busy signal generation for pipelined actors

This commit is contained in:
Sebastien Bourdeauducq 2012-06-16 22:38:45 +02:00
parent 9228e8a96d
commit 1a576e5c83
1 changed files with 1 additions and 1 deletions

View File

@ -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)