ibuffer addition

This commit is contained in:
Blaise Tine
2020-08-22 00:22:04 -07:00
parent 6c12391338
commit 0b355f228e
80 changed files with 1811 additions and 1528 deletions

View File

@@ -36,14 +36,14 @@ module VX_rr_arbiter #(
end
end
grant_onehot_r = N'(0);
grant_onehot_r[grant_index] = 1;
grant_onehot_r[grant_table[state]] = 1;
end
always @(posedge clk) begin
if (reset) begin
state <= 0;
end else begin
state <= grant_index;
state <= grant_table[state];
end
end