[][src]Enum capstone_sys::m68k_address_mode

#[repr(u32)]
pub enum m68k_address_mode { M68K_AM_NONE, M68K_AM_REG_DIRECT_DATA, M68K_AM_REG_DIRECT_ADDR, M68K_AM_REGI_ADDR, M68K_AM_REGI_ADDR_POST_INC, M68K_AM_REGI_ADDR_PRE_DEC, M68K_AM_REGI_ADDR_DISP, M68K_AM_AREGI_INDEX_8_BIT_DISP, M68K_AM_AREGI_INDEX_BASE_DISP, M68K_AM_MEMI_POST_INDEX, M68K_AM_MEMI_PRE_INDEX, M68K_AM_PCI_DISP, M68K_AM_PCI_INDEX_8_BIT_DISP, M68K_AM_PCI_INDEX_BASE_DISP, M68K_AM_PC_MEMI_POST_INDEX, M68K_AM_PC_MEMI_PRE_INDEX, M68K_AM_ABSOLUTE_DATA_SHORT, M68K_AM_ABSOLUTE_DATA_LONG, M68K_AM_IMMEDIATE, M68K_AM_BRANCH_DISPLACEMENT, }

M68K Addressing Modes

Variants

M68K_AM_NONE

< No address mode.

M68K_AM_REG_DIRECT_DATA

< Register Direct - Data

M68K_AM_REG_DIRECT_ADDR

< Register Direct - Address

M68K_AM_REGI_ADDR

< Register Indirect - Address

M68K_AM_REGI_ADDR_POST_INC

< Register Indirect - Address with Postincrement

M68K_AM_REGI_ADDR_PRE_DEC

< Register Indirect - Address with Predecrement

M68K_AM_REGI_ADDR_DISP

< Register Indirect - Address with Displacement

M68K_AM_AREGI_INDEX_8_BIT_DISP

< Address Register Indirect With Index- 8-bit displacement

M68K_AM_AREGI_INDEX_BASE_DISP

< Address Register Indirect With Index- Base displacement

M68K_AM_MEMI_POST_INDEX

< Memory indirect - Postindex

M68K_AM_MEMI_PRE_INDEX

< Memory indirect - Preindex

M68K_AM_PCI_DISP

< Program Counter Indirect - with Displacement

M68K_AM_PCI_INDEX_8_BIT_DISP

< Program Counter Indirect with Index - with 8-Bit Displacement

M68K_AM_PCI_INDEX_BASE_DISP

< Program Counter Indirect with Index - with Base Displacement

M68K_AM_PC_MEMI_POST_INDEX

< Program Counter Memory Indirect - Postindexed

M68K_AM_PC_MEMI_PRE_INDEX

< Program Counter Memory Indirect - Preindexed

M68K_AM_ABSOLUTE_DATA_SHORT

< Absolute Data Addressing - Short

M68K_AM_ABSOLUTE_DATA_LONG

< Absolute Data Addressing - Long

M68K_AM_IMMEDIATE

< Immediate value

M68K_AM_BRANCH_DISPLACEMENT

< Address as displacement from (PC+2) used by branches

Trait Implementations

impl Eq for m68k_address_mode[src]

impl Copy for m68k_address_mode[src]

impl PartialEq<m68k_address_mode> for m68k_address_mode[src]

#[must_use]
default fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for m68k_address_mode[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for m68k_address_mode[src]

impl Hash for m68k_address_mode[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.