Skip to content

Commit

Permalink
[FEATURE] In ARM64 disasm: added coloring NOP
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Jul 12, 2024
1 parent 0a45fca commit 63a9522
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions disasm/cdis/CDisasm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ minidis::mnem_type CDisasm::fetchMnemType_Arm64(const cs_insn &insn) const
return MT_JUMP;
}
switch (cMnem) {
case arm64_insn::ARM64_INS_NOP: return MT_NOP;

case arm64_insn::ARM64_INS_CBZ:
case arm64_insn::ARM64_INS_CBNZ:
case arm64_insn::ARM64_INS_TBL:
Expand Down

0 comments on commit 63a9522

Please sign in to comment.