Trait libnoentiendo::cpu::mos6502::MemoryIO
source · pub trait MemoryIO {
// Required methods
fn read(&mut self, address: u16) -> u8;
fn write(&mut self, address: u16, value: u8);
fn read_word(&mut self, address: u16) -> u16;
fn write_word(&mut self, address: u16, value: u16);
}
Expand description
Read and write from the system’s memory.
Required Methods§
sourcefn read_word(&mut self, address: u16) -> u16
fn read_word(&mut self, address: u16) -> u16
Read a word (little-endian) from the given address in memory.
sourcefn write_word(&mut self, address: u16, value: u16)
fn write_word(&mut self, address: u16, value: u16)
Write a word (little-endian) to the given address in memory.