[][src]Enum iz80::Reg8

pub enum Reg8 {
    A,
    F,
    B,
    C,
    D,
    E,
    H,
    L,
    I,
    R,
    IXH,
    IXL,
    IYH,
    IYL,
    SPH,
    SPL,
    _HL,
}

8 bit registers

Variants

A

8 bit register A

F

8 bit register F, can be accessed vif the flags methods

B

8 bit register B

C

8 bit register C

D

8 bit register D

E

8 bit register E

H

8 bit register H, high byte of HL

L

8 bit register L, low byte of HL

I

8 bit register I

R

8 bit register R

IXH

High byte of IX

IXL

Low byte of IX

IYH

High byte of IY

IYL

Low byte of IY

SPH

High byte of SP

SPL

Low byte of SP

_HL

Pseudo register, has to be replaced by (HL)

Trait Implementations

impl Clone for Reg8[src]

impl Copy for Reg8[src]

impl Debug for Reg8[src]

impl Display for Reg8[src]

impl PartialEq<Reg8> for Reg8[src]

impl StructuralPartialEq for Reg8[src]

Auto Trait Implementations

impl RefUnwindSafe for Reg8

impl Send for Reg8

impl Sync for Reg8

impl Unpin for Reg8

impl UnwindSafe for Reg8

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> 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.