[][src]Struct z80emu::z80::BM1

pub struct BM1 { /* fields omitted */ }

The struct implements a Flavour that (supposedly) emulates the KP1858BM1 or T34BM1 clones of the Z80.

It differs from the NMOS implementation in the way Flavour::memptr_mix works. In this implementation the returned MSB is always 0. The Flavour::ACCEPTING_INT_RESETS_IFF2_EARLY value is false.

Trait Implementations

impl Clone for BM1[src]

impl Copy for BM1[src]

impl Debug for BM1[src]

impl Default for BM1[src]

impl<'de> Deserialize<'de> for BM1 where
    BM1: Default
[src]

impl Eq for BM1[src]

impl Flavour for BM1[src]

impl From<BM1> for CMOS[src]

This conversion is lossy. When CMOS Flavour is converted back information is lost.

impl From<BM1> for NMOS[src]

impl From<CMOS> for BM1[src]

impl From<NMOS> for BM1[src]

impl PartialEq<BM1> for BM1[src]

impl Serialize for BM1[src]

impl StructuralEq for BM1[src]

impl StructuralPartialEq for BM1[src]

Auto Trait Implementations

impl RefUnwindSafe for BM1

impl Send for BM1

impl Sync for BM1

impl Unpin for BM1

impl UnwindSafe for BM1

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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, 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.