Struct libnoentiendo::memory::BlockMemory
source · pub struct BlockMemory { /* private fields */ }
Expand description
Represents a simple block of contiguous memory, with no additional hardware. This can be used to represent both RAM and ROM. Reading from this memory is side-effect free.
Implementations§
source§impl BlockMemory
impl BlockMemory
sourcepub fn ram(size: usize) -> Self
pub fn ram(size: usize) -> Self
Create a BlockMemory of the given size which clears its contents when reset.
sourcepub fn rom(size: usize) -> Self
pub fn rom(size: usize) -> Self
Create a BlockMemory of the given size which does not clear its contents when reset.
sourcepub fn from_file(size: usize, file: RomFile) -> Self
pub fn from_file(size: usize, file: RomFile) -> Self
Create a BlockMemory of the given size which loads its contents from the given file when reset.
sourcepub fn set_writeable(self, writeable: bool) -> Self
pub fn set_writeable(self, writeable: bool) -> Self
Change whether this BlockMemory is writable.
Trait Implementations§
source§impl Memory for BlockMemory
impl Memory for BlockMemory
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 BlockMemory
impl Send for BlockMemory
impl Sync for BlockMemory
impl Unpin for BlockMemory
impl UnwindSafe for BlockMemory
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