mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-20 11:57:12 -04:00
Correct cause number for illegal instruction exception
This bug has beed reported by @taoliug. This resolves #195.
This commit is contained in:
parent
ef696bf1f7
commit
6d72aebc16
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ typedef enum logic [5:0] {
|
|||
// EXC_CAUSE_IRQ_FAST_14 = {1'b1, 5'd30},
|
||||
EXC_CAUSE_IRQ_NM = {1'b1, 5'd31}, // == EXC_CAUSE_IRQ_FAST_15
|
||||
EXC_CAUSE_INSN_ADDR_MISA = {1'b0, 5'd00},
|
||||
EXC_CAUSE_ILLEGAL_INSN = {1'b0, 5'd01},
|
||||
EXC_CAUSE_ILLEGAL_INSN = {1'b0, 5'd02},
|
||||
EXC_CAUSE_BREAKPOINT = {1'b0, 5'd03},
|
||||
EXC_CAUSE_LOAD_ACCESS_FAULT = {1'b0, 5'd05},
|
||||
EXC_CAUSE_STORE_ACCESS_FAULT = {1'b0, 5'd07},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue