Enum Operation

Source
pub enum Operation {
Show 58 variants ADC, AND, ASL, BCC, BCS, BEQ, BIT, BMI, BNE, BPL, BRK, BVC, BVS, CLD, CLI, CLV, CMP, CPX, CPY, DEC, DEX, DEY, EOR, INC, INX, INY, LDX, LSR, NOP, ORA, PHA, PHP, PLA, PLP, ROL, ROR, RTI, SBC, SED, SEI, STX, STY, TAX, TAY, TSX, TXA, TXS, TYA, LDA, LDY, STA, JMP, JSR, SEC, CLC, RTS, Raw(Vec<u8>), Label(String),
}
Expand description

Enumeration containing all operations.

Variants§

§

ADC

Add Memory to Accumulator with Carry

§

AND

AND Memory with Accumulator

§

ASL

Shift Left One Bit (Memory or Accumulator)

§

BCC

Branch on carry clear

§

BCS

Branch on Carry Set

§

BEQ

§

BIT

§

BMI

§

BNE

§

BPL

§

BRK

§

BVC

§

BVS

§

CLD

§

CLI

§

CLV

§

CMP

§

CPX

§

CPY

§

DEC

§

DEX

§

DEY

§

EOR

§

INC

§

INX

§

INY

§

LDX

§

LSR

§

NOP

§

ORA

§

PHA

§

PHP

§

PLA

§

PLP

§

ROL

§

ROR

§

RTI

§

SBC

§

SED

§

SEI

§

STX

§

STY

§

TAX

§

TAY

§

TSX

§

TXA

§

TXS

§

TYA

§

LDA

Load accumulator

§

LDY

§

STA

Store accumulator

§

JMP

Jump

§

JSR

Jump sub-routine

§

SEC

Set carrier flag

§

CLC

Clear carrier flag

§

RTS

Return (from stack)

§

Raw(Vec<u8>)

Store a byte in the instruction stream. Only immediate addressing mode can be used.

§

Label(String)

Label

Implementations§

Source§

impl Operation

Source

pub fn definition(&self) -> Option<&'static InstructionDef>

Get the instruction definition of the operation.

Trait Implementations§

Source§

impl Clone for Operation

Source§

fn clone(&self) -> Operation

Returns a copy 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 Operation

Source§

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

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

impl Default for Operation

Source§

fn default() -> Operation

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Operation

Source§

fn eq(&self, other: &Operation) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Operation

Auto Trait Implementations§

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.