Skip to content

Commit

Permalink
Xtensa: add to cstool.c
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed Jun 4, 2024
1 parent 37a0c94 commit 9779022
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cstool/cstool.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,9 @@ static void print_details(csh handle, cs_arch arch, cs_mode md, cs_insn *ins)
case CS_ARCH_HPPA:
print_insn_detail_hppa(handle, ins);
break;
case CS_ARCH_XTENSA:
print_insn_detail_xtensa(handle, ins);
break;
default: break;
}

Expand Down
1 change: 1 addition & 0 deletions cstool/cstool.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ void print_insn_detail_sh(csh handle, cs_insn *ins);
void print_insn_detail_tricore(csh handle, cs_insn *ins);
void print_insn_detail_alpha(csh handle, cs_insn *ins);
void print_insn_detail_hppa(csh handle, cs_insn *ins);
void print_insn_detail_xtensa(csh handle, cs_insn *ins);

#endif //CAPSTONE_CSTOOL_CSTOOL_H_

0 comments on commit 9779022

Please sign in to comment.