Enum capstone_sys::arm_cc [−][src]
#[repr(u32)]
pub enum arm_cc {
Show variants
ARM_CC_INVALID,
ARM_CC_EQ,
ARM_CC_NE,
ARM_CC_HS,
ARM_CC_LO,
ARM_CC_MI,
ARM_CC_PL,
ARM_CC_VS,
ARM_CC_VC,
ARM_CC_HI,
ARM_CC_LS,
ARM_CC_GE,
ARM_CC_LT,
ARM_CC_GT,
ARM_CC_LE,
ARM_CC_AL,
}Expand description
ARM condition code
Variants
< Equal Equal
< Not equal Not equal, or unordered
< Carry set >, ==, or unordered
< Carry clear Less than
< Minus, negative Less than
< Plus, positive or zero >, ==, or unordered
< Overflow Unordered
< No overflow Not unordered
< Unsigned higher Greater than, or unordered
< Unsigned lower or same Less than or equal
< Greater than or equal Greater than or equal
< Less than Less than, or unordered
< Greater than Greater than
< Less than or equal <, ==, or unordered
< Always (unconditional) Always (unconditional)