Enum falcon_mos6502::Operand [] [src]

pub enum Operand {
    Absolute(u16),
    AbsoluteX(u16),
    AbsoluteY(u16),
    Accumulator,
    Immediate(u8),
    Implied,
    IndexedIndirect(u8),
    Indirect(u16),
    IndirectIndexed(u8),
    Relative(i8),
    ZeroPage(u8),
    ZeroPageX(u8),
    ZeroPageY(u8),
}

Variants

Trait Implementations

impl Clone for Operand
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Operand
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Operand
[src]

impl Hash for Operand
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

impl PartialEq for Operand
[src]

[src]

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

[src]

This method tests for !=.

impl Display for Operand
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Operand

impl Sync for Operand