#[repr(u16)]
pub enum Dest {
Null,
M,
D,
DM,
A,
AM,
AD,
AMD,
}
Expand description
Where to store Comp
.
Format is this: **** **** **dd d***
Variants
Null
Value is not stored
M
RAM[A]
D
D register
DM
D register and RAM[A]
A
A register
AM
A register and RAM[A]
AD
A and D register
AMD
A and D register and RAM[A]
Trait Implementations
sourceimpl BitOrAssign<Dest> for Dest
impl BitOrAssign<Dest> for Dest
sourcefn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreimpl Copy for Dest
impl Eq for Dest
impl StructuralEq for Dest
impl StructuralPartialEq for Dest
Auto Trait Implementations
impl RefUnwindSafe for Dest
impl Send for Dest
impl Sync for Dest
impl Unpin for Dest
impl UnwindSafe for Dest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more