You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module while_loop(
input logic [3:0] in,
output logic [3:0] out
);
always @(in) begin
integer a = 3;
while (a >= 0) begin
out[a] = in[a];
a = a - 1;
end
end
endmodule : while_loop
The text was updated successfully, but these errors were encountered:
While loop not supported for synthesizeable code:
The text was updated successfully, but these errors were encountered: