pub enum AddressingMode {
Show 15 variants
Accumulator,
Implied,
Immediate,
ZeroPage,
ZeroPageX,
ZeroPageY,
Relative,
Absolute,
AbsoluteX,
AbsoluteY,
BuggyIndirect,
Indirect,
IndexedIndirectX,
IndirectIndexedY,
ZeroPageIndirect,
}
Variants§
Accumulator
Implied
Immediate
ZeroPage
ZeroPageX
ZeroPageY
Relative
Absolute
AbsoluteX
AbsoluteY
BuggyIndirect
Indirect
IndexedIndirectX
IndirectIndexedY
ZeroPageIndirect
Implementations§
Source§impl AddressingMode
impl AddressingMode
pub const fn extra_bytes(self) -> u16
Trait Implementations§
Source§impl Clone for AddressingMode
impl Clone for AddressingMode
Source§fn clone(&self) -> AddressingMode
fn clone(&self) -> AddressingMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AddressingMode
impl Debug for AddressingMode
impl Copy for AddressingMode
Auto Trait Implementations§
impl Freeze for AddressingMode
impl RefUnwindSafe for AddressingMode
impl Send for AddressingMode
impl Sync for AddressingMode
impl Unpin for AddressingMode
impl UnwindSafe for AddressingMode
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