Skip to content

Commit

Permalink
Merge pull request #399 from riscv-boom/interruptfix
Browse files Browse the repository at this point in the history
[rob] Block dispatch when ROB has an exception enqueued
  • Loading branch information
jerryz123 committed Nov 13, 2019
2 parents d6a3d55 + b49d176 commit ae44885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/exu/rob.scala
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ class Rob(
io.rob_tail_idx := rob_tail_idx
io.rob_pnr_idx := rob_pnr_idx
io.empty := empty
io.ready := (rob_state === s_normal) && !full
io.ready := (rob_state === s_normal) && !full && !r_xcpt_val

//-----------------------------------------------
//-----------------------------------------------
Expand Down

0 comments on commit ae44885

Please sign in to comment.