mirror of
https://github.com/openhwgroup/cve2.git
synced 2025-04-23 05:27:30 -04:00
Trigger an invalid instruction if jalr op code bits 14:12 are not zero
This commit is contained in:
parent
3277a983c7
commit
99da96f66b
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ module riscv_decoder
|
|||
if (instr_rdata_i[14:12] != 3'b0) begin
|
||||
jump_in_id = `BRANCH_NONE;
|
||||
regfile_alu_we = 1'b0;
|
||||
illegal_insn_o = 1'b0;
|
||||
illegal_insn_o = 1'b1;
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue