Skip to content

Commit

Permalink
mips: add comments on mips32 & mips64 to capstone.h
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Nov 12, 2014
1 parent c36e675 commit cc60d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/capstone.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ typedef enum cs_mode {
CS_MODE_LITTLE_ENDIAN = 0, // little endian mode (default mode)
CS_MODE_ARM = 0, // 32-bit ARM
CS_MODE_16 = 1 << 1, // 16-bit mode
CS_MODE_32 = 1 << 2, // 32-bit mode
CS_MODE_64 = 1 << 3, // 64-bit mode
CS_MODE_32 = 1 << 2, // 32-bit mode. Also use for MIPS32 ISA
CS_MODE_64 = 1 << 3, // 64-bit mode. Also use for MIPS64 ISA
CS_MODE_THUMB = 1 << 4, // ARM's Thumb mode, including Thumb-2
CS_MODE_MCLASS = 1 << 5, // ARM's Cortex-M series
CS_MODE_V8 = 1 << 6, // ARMv8 A32 encodings for ARM
Expand Down

0 comments on commit cc60d10

Please sign in to comment.