Skip to content
Snippets Groups Projects
Commit 29c2dcd0 authored by Mathias Kreider's avatar Mathias Kreider
Browse files

fixed bug in round robin

parent 08af7a09
Branches
Tags
No related merge requests found
...@@ -147,7 +147,7 @@ irq_master_o.we <= '1'; ...@@ -147,7 +147,7 @@ irq_master_o.we <= '1';
if(rst_n_i = '0') then if(rst_n_i = '0') then
idx_robin <= 0; idx_robin <= 0;
else else
if(r_cyc0 = '0' and r_cyc1 = '0') then if(r_cyc0 = '0') then
if(idx_robin = g_channels-1) then if(idx_robin = g_channels-1) then
idx_robin <= 0; idx_robin <= 0;
else else
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment