Skip to content

Commit

Permalink
IRQ arrive on the last instruction of HW loop #107
Browse files Browse the repository at this point in the history
  • Loading branch information
davideschiavone committed Sep 19, 2019
1 parent f7d6bde commit 78c4c44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtl/riscv_fetch_fifo.sv
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ module riscv_fetch_fifo

assign unaligned_is_compressed = rdata[17:16] != 2'b11;
assign aligned_is_compressed = rdata[1:0] != 2'b11;
assign unaligned_is_compressed_st = rdata_Q[0][17:16] != 2'b11;
assign aligned_is_compressed_st = rdata_Q[0][1:0] != 2'b11;
assign unaligned_is_compressed_st = valid_Q[0] && rdata_Q[0][17:16] != 2'b11;
assign aligned_is_compressed_st = valid_Q[0] && rdata_Q[0][1:0] != 2'b11;

//////////////////////////////////////////////////////////////////////////////
// instruction aligner (if unaligned)
Expand Down

0 comments on commit 78c4c44

Please sign in to comment.