mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 21:07:34 -04:00
[rtl] Fix zbs bitmanip instruction tracer output
They only have 5 bit immediates so use the shift form for I format decode.
This commit is contained in:
parent
94f9517287
commit
c07414e8f6
1 changed files with 4 additions and 4 deletions
|
@ -945,10 +945,10 @@ module ibex_tracer (
|
|||
INSN_SEXTB: decode_r1_insn("sext.b");
|
||||
INSN_SEXTH: decode_r1_insn("sext.h");
|
||||
// RV32B - ZBS
|
||||
INSN_BCLRI: decode_i_insn("bclri");
|
||||
INSN_BSETI: decode_i_insn("bseti");
|
||||
INSN_BINVI: decode_i_insn("binvi");
|
||||
INSN_BEXTI: decode_i_insn("bexti");
|
||||
INSN_BCLRI: decode_i_shift_insn("bclri");
|
||||
INSN_BSETI: decode_i_shift_insn("bseti");
|
||||
INSN_BINVI: decode_i_shift_insn("binvi");
|
||||
INSN_BEXTI: decode_i_shift_insn("bexti");
|
||||
INSN_BCLR: decode_r_insn("bclr");
|
||||
INSN_BSET: decode_r_insn("bset");
|
||||
INSN_BINV: decode_r_insn("binv");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue