aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--riscv/rocc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/rocc.cc b/riscv/rocc.cc
index fe221ca..b148319 100644
--- a/riscv/rocc.cc
+++ b/riscv/rocc.cc
@@ -31,7 +31,7 @@ std::vector<insn_desc_t> rocc_t::get_instructions()
{
std::vector<insn_desc_t> insns;
insns.push_back((insn_desc_t){0x0b, 0x7f, &::illegal_instruction, c0});
- insns.push_back((insn_desc_t){0x0f, 0x7f, &::illegal_instruction, c1});
+ insns.push_back((insn_desc_t){0x2b, 0x7f, &::illegal_instruction, c1});
insns.push_back((insn_desc_t){0x5b, 0x7f, &::illegal_instruction, c2});
insns.push_back((insn_desc_t){0x7b, 0x7f, &::illegal_instruction, c3});
return insns;