Enum capstone3::Mode [] [src]

pub enum Mode {
    LittleEndian,
    Arm32,
    Mode16,
    Mode32,
    Mode64,
    Thumb,
    MClass,
    V8,
    Micro,
    Mips3,
    Mips32R6,
    MipsGP64,
    V9,
    BigEndian,
    Mips32,
    Mips64,
}

Disassembler modes

Variants

little-endian mode (default mode)

32-bit ARM

16-bit mode (X86)

32-bit mode (X86)

64-bit mode (X86, PPC)

ARM's Thumb mode, including Thumb-2

ARM's Cortex-M series

ARMv8 A32 encodings for ARM

MicroMips mode (MIPS)

Mips III ISA

Mips32r6 ISA

General Purpose Registers are 64-bit wide (MIPS)

SparcV9 mode (Sparc)

big-endian mode

Mips32 ISA (Mips)

Mips64 ISA (Mips)

Methods

impl Mode
[src]

Trait Implementations

impl Debug for Mode
[src]

Formats the value using the given formatter.

impl Clone for Mode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Mode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Copy for Mode
[src]