pub enum Variant {
CMOS,
NES,
NMOS,
}Expand description
CPU variants
Variants§
CMOS
Modified 65C02 (no ROR bug)
NES
Modified 2A03 (no decimal mode)
NMOS
Original 6502 (with ROR bug)
Trait Implementations§
impl Copy for Variant
impl StructuralPartialEq for Variant
Auto Trait Implementations§
impl Freeze for Variant
impl RefUnwindSafe for Variant
impl Send for Variant
impl Sync for Variant
impl Unpin for Variant
impl UnwindSafe for Variant
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