Skip to content

Commit

Permalink
add disasm support for cmo instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
liweiwei committed Jan 7, 2022
1 parent 30f7122 commit 3bd9d35
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions disasm/disasm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,12 @@ disassembler_t::disassembler_t(int xlen)
DEFINE_RTYPE(pktt32);
}

// ext-cmo
DISASM_INSN("cbo.clean", cbo_clean, 0, {&xrs1});
DISASM_INSN("cbo.flush", cbo_flush, 0, {&xrs1});
DISASM_INSN("cbo.inval", cbo_inval, 0, {&xrs1});
DISASM_INSN("cbo.zero", cbo_zero, 0, {&xrs1});

add_unknown_insns(this);
}

Expand Down

0 comments on commit 3bd9d35

Please sign in to comment.