pub struct Mos6502 {
    pub registers: Registers,
    pub memory: Box<dyn Memory>,
    /* private fields */
}
Expand description

The MOS 6502 CPU and its associated memory.

Fields§

§registers: Registers§memory: Box<dyn Memory>

Implementations§

source§

impl Mos6502

source

pub fn new(memory: impl Memory + 'static, variant: Mos6502Variant) -> Mos6502

Trait Implementations§

source§

impl Cpu for Mos6502

source§

fn get_cycle_count(&self) -> u64

Return a SystemInfo struct containing the current system status.

source§

fn tick(&mut self) -> u8

Execute a single instruction.

source§

fn reset(&mut self)

Reset this CPU, clearing internal state.
source§

fn attach_trace_handler(&mut self, trace: Box<dyn TraceHandler>)

Attach the given handler to receive trace events from this CPU.
source§

fn cleanup(&mut self) -> Result<(), &str>

Clean up any resources used by this CPU.
source§

impl InterruptHandler for Mos6502

source§

fn interrupt(&mut self, maskable: bool, break_instr: bool)

source§

impl MemoryIO for Mos6502

source§

fn read(&mut self, address: u16) -> u8

Read a byte from the given address in memory.
source§

fn read_word(&mut self, address: u16) -> u16

Read a word (little-endian) from the given address in memory.
source§

fn write(&mut self, address: u16, value: u8)

Write a byte to the given address in memory.
source§

fn write_word(&mut self, address: u16, value: u16)

Write a word (little-endian) to the given address in memory.
source§

impl Stack for Mos6502

source§

fn push(&mut self, value: u8)

Push a byte onto the stack.
source§

fn pop(&mut self) -> u8

Pop a byte from the stack.
source§

fn push_word(&mut self, value: u16)

Push a word (little-endian) onto the stack.
source§

fn pop_word(&mut self) -> u16

Pop a word (little-endian) from the stack.

Auto Trait Implementations§

§

impl !RefUnwindSafe for Mos6502

§

impl !Send for Mos6502

§

impl !Sync for Mos6502

§

impl Unpin for Mos6502

§

impl !UnwindSafe for Mos6502

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

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

§

fn vzip(self) -> V