[][src]Enum pir_8_emu::isa::instruction::InstructionLoadImmediateWideRegisterPair

pub enum InstructionLoadImmediateWideRegisterPair {
    Ab,
    Cd,
    Xy,
    Adr,
}

When performing a wide immediate load, two bytes are read from memory into a pair of registers, as indicated by the two bits RR.

RRRegisters
00A and B
01C and D
10X and Y
11ADR

Variants

Ab
Cd
Xy
Adr

Trait Implementations

impl Clone for InstructionLoadImmediateWideRegisterPair[src]

impl Copy for InstructionLoadImmediateWideRegisterPair[src]

impl Debug for InstructionLoadImmediateWideRegisterPair[src]

impl Display for InstructionLoadImmediateWideRegisterPair[src]

impl Eq for InstructionLoadImmediateWideRegisterPair[src]

impl Hash for InstructionLoadImmediateWideRegisterPair[src]

impl Ord for InstructionLoadImmediateWideRegisterPair[src]

impl PartialEq<InstructionLoadImmediateWideRegisterPair> for InstructionLoadImmediateWideRegisterPair[src]

impl PartialOrd<InstructionLoadImmediateWideRegisterPair> for InstructionLoadImmediateWideRegisterPair[src]

impl StructuralEq for InstructionLoadImmediateWideRegisterPair[src]

impl StructuralPartialEq for InstructionLoadImmediateWideRegisterPair[src]

impl TryFrom<u8> for InstructionLoadImmediateWideRegisterPair[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for InstructionLoadImmediateWideRegisterPair

impl Send for InstructionLoadImmediateWideRegisterPair

impl Sync for InstructionLoadImmediateWideRegisterPair

impl Unpin for InstructionLoadImmediateWideRegisterPair

impl UnwindSafe for InstructionLoadImmediateWideRegisterPair

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.