Skip to content
Snippets Groups Projects
Commit 58bc55b5 authored by auphelia's avatar auphelia
Browse files

[rtllib] Change "<=" to "=" in line 196

parent daa05e2f
No related branches found
No related tags found
No related merge requests found
...@@ -193,7 +193,7 @@ module Q_srl (clock, reset, i_d, i_v, i_r, o_d, o_v, o_r, count); ...@@ -193,7 +193,7 @@ module Q_srl (clock, reset, i_d, i_v, i_r, o_d, o_v, o_r, count);
if (shift_en_) begin if (shift_en_) begin
// synthesis loop_limit 256 // synthesis loop_limit 256
for (a_=depth-2; a_>0; a_=a_-1) begin for (a_=depth-2; a_>0; a_=a_-1) begin
srl[a_] <= srl[a_-1]; srl[a_] = srl[a_-1];
end end
srl[0] <= i_d; srl[0] <= i_d;
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment