Skip to content

Commit

Permalink
Fix assignment type
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Forencich <[email protected]>
  • Loading branch information
alexforencich committed Sep 23, 2023
1 parent 75126f1 commit 2074d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/dma_ram_demux_wr.v
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ for (n = 0; n < SEG_COUNT; n = n + 1) begin
select_resp_valid_reg <= 1'b0;
if (!fifo_empty) begin
select_resp_reg <= fifo_sel[fifo_rd_ptr_reg[FIFO_ADDR_WIDTH-1:0]];
fifo_rd_ptr_reg = fifo_rd_ptr_reg + 1;
fifo_rd_ptr_reg <= fifo_rd_ptr_reg + 1;
select_resp_valid_reg <= 1'b1;
end
end
Expand Down

0 comments on commit 2074d72

Please sign in to comment.