Skip to content

Commit b9b29ac

Browse files
author
Andrea Belano
committed
Fix busy assertion
1 parent b97ed0d commit b9b29ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtl/redmule_ctrl.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ module redmule_ctrl
128128

129129
assign cntrl_scheduler_o.first_load = current == REDMULE_STARTING;
130130
assign tiler_setback = current == REDMULE_IDLE && next == REDMULE_STARTING;
131-
assign busy_o = current != REDMULE_LATCH_RST || current != REDMULE_IDLE || current != REDMULE_FINISHED;
131+
assign busy_o = current != REDMULE_LATCH_RST && current != REDMULE_IDLE && current != REDMULE_FINISHED;
132132
assign flush_o = current == REDMULE_FINISHED;
133133
assign cntrl_scheduler_o.rst = current == REDMULE_FINISHED;
134134
assign cntrl_scheduler_o.finished = current == REDMULE_FINISHED;

0 commit comments

Comments
 (0)