Opcode

Enum Opcode 

Source
pub enum Opcode {
Show 54 variants ADC(AddressingMode), AND(AddressingMode), ASL(AddressingMode), BIT(AddressingMode), BPL(i8), BMI(i8), BVC(i8), BVS(i8), BCC(i8), BCS(i8), BNE(i8), BEQ(i8), BRK, CMP(AddressingMode), CPX(AddressingMode), CPY(AddressingMode), DEC(AddressingMode), EOR(AddressingMode), CLC, SEC, CLI, SEI, CLV, INC(AddressingMode), JMP(AddressingMode), JSR(AddressingMode), LDA(AddressingMode), LDX(AddressingMode), LDY(AddressingMode), LSR(AddressingMode), NOP, ORA(AddressingMode), TAX, TXA, DEX, INX, TAY, TYA, DEY, INY, ROL(AddressingMode), ROR(AddressingMode), RTI, RTS, SBC(AddressingMode), STA(AddressingMode), TXS, TSX, PHA, PLA, PHP, PLP, STX(AddressingMode), STY(AddressingMode),
}

Variants§

Implementations§

Source§

impl Opcode

Source

pub fn set_arg1(&mut self, arg: u8)

Source

pub fn set_arg2(&mut self, arg: u8)

Source

pub fn require_arg1(&self) -> bool

Source

pub fn require_arg2(&self) -> bool

Source

pub fn need_compute(&self) -> bool

Source

pub fn compute(&mut self, cpu: &mut Nes6502, step: usize)

Trait Implementations§

Source§

impl Clone for Opcode

Source§

fn clone(&self) -> Opcode

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Opcode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Opcode

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<u8> for Opcode

Source§

fn from(value: u8) -> Self

Converts to this type from the input type.
Source§

impl Serialize for Opcode

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<Opcode> for Vec<u8>

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(value: Opcode) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for Opcode

Auto Trait Implementations§

§

impl Freeze for Opcode

§

impl RefUnwindSafe for Opcode

§

impl Send for Opcode

§

impl Sync for Opcode

§

impl Unpin for Opcode

§

impl UnwindSafe for Opcode

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,