Trait libnoentiendo::memory::Memory
source · pub trait Memory {
// Required methods
fn read(&mut self, address: u16) -> u8;
fn write(&mut self, address: u16, value: u8);
fn reset(&mut self);
fn poll(
&mut self,
cycles_since_poll: u64,
total_cycle_count: u64
) -> ActiveInterrupt;
}
Expand description
Represents a contiguous block of memory which can be read, written, reset, and polled to see if an interrupt has been triggered.
Required Methods§
sourcefn read(&mut self, address: u16) -> u8
fn read(&mut self, address: u16) -> u8
Read a byte from this memory at the given address. Implementations may trigger side effects as a result of this read.
sourcefn reset(&mut self)
fn reset(&mut self)
Reset this memory to its initial state, e.g. after a system reboot. Sometimes this will clear the contents of the memory, like with RAM. Other times this is a no-op, e.g. for ROM.
sourcefn poll(
&mut self,
cycles_since_poll: u64,
total_cycle_count: u64
) -> ActiveInterrupt
fn poll( &mut self, cycles_since_poll: u64, total_cycle_count: u64 ) -> ActiveInterrupt
Poll this memory to see if an interrupt has been triggered. Implementations may trigger an NMI or IRQ for any implementation-dependent reason.