Struct libnoentiendo::memory::BankedMemory
source · pub struct BankedMemory { /* private fields */ }
Expand description
Represents the memory banking features found in the Commodore 64 and other devices. Multiple memory implementations are all mapped to the same address space. The active implementation is selected by external logic.
Implementations§
Trait Implementations§
source§impl Memory for BankedMemory
impl Memory for BankedMemory
source§fn 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.
source§fn write(&mut self, address: u16, value: u8)
fn write(&mut self, address: u16, value: u8)
Write a byte to this memory at the given address.
Auto Trait Implementations§
impl !RefUnwindSafe for BankedMemory
impl !Send for BankedMemory
impl !Sync for BankedMemory
impl Unpin for BankedMemory
impl !UnwindSafe for BankedMemory
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