pub enum Reg8 {
Acc,
B,
C,
D,
E,
H,
L,
}Expand description
Identifies an 8 bit register in the microcode.
Variants§
Trait Implementations§
Source§impl Literal for Reg8
impl Literal for Reg8
Source§fn constant_value(&self, crates: CrateFetcher) -> TokenStream
fn constant_value(&self, crates: CrateFetcher) -> TokenStream
Generate output representing this literal as a stream of tokens. Takes a function
that can be used to look up crate names.
Source§impl MicrocodeReadable for Reg8
impl MicrocodeReadable for Reg8
fn to_read(self) -> InstrBuilder
Source§impl MicrocodeWritable for Reg8
impl MicrocodeWritable for Reg8
fn to_write(self) -> InstrBuilder
impl Copy for Reg8
impl Eq for Reg8
impl StructuralPartialEq for Reg8
Auto Trait Implementations§
impl Freeze for Reg8
impl RefUnwindSafe for Reg8
impl Send for Reg8
impl Sync for Reg8
impl Unpin for Reg8
impl UnwindSafe for Reg8
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more