Add ENDING constants to be consistent with other archs

This commit is contained in:
Ben Nagy 2016-04-12 12:27:54 +09:30
parent 6588833a56
commit d35a2b7738

View File

@ -567,8 +567,17 @@ typedef enum m68k_insn {
M68K_INS_TST,
M68K_INS_UNLK,
M68K_INS_UNPK,
M68K_INS_ENDING, // <-- mark the end of the list of instructions
} m68k_insn;
//> Group of M68K instructions
typedef enum m68k_insn_group {
M68K_GRP_INVALID = 0, // = CS_GRP_INVALID
M68K_GRP_ENDING,// <-- mark the end of the list of groups
} m68k_insn_group;
#ifdef __cplusplus
}
#endif