Struct libnoentiendo::cpu::mos6502::Mos6502
source · 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§
Trait Implementations§
source§impl Cpu for Mos6502
impl Cpu for Mos6502
source§fn get_cycle_count(&self) -> u64
fn get_cycle_count(&self) -> u64
Return a SystemInfo struct containing the current system status.
source§fn attach_trace_handler(&mut self, trace: Box<dyn TraceHandler>)
fn attach_trace_handler(&mut self, trace: Box<dyn TraceHandler>)
Attach the given handler to receive trace events from this CPU.
source§impl InterruptHandler for Mos6502
impl InterruptHandler for Mos6502
source§impl MemoryIO for Mos6502
impl MemoryIO for Mos6502
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> 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