Struct libnoentiendo::memory::mos652x::Via
source · pub struct Via { /* private fields */ }
Expand description
The MOS 6522 Versatile Interface Adapter (VIA). Contains two ports, two timers, a shift register, and some interrupt and control registers. Source: http://archive.6502.org/datasheets/mos_6522_preliminary_nov_1977.pdf
Implementations§
Trait Implementations§
source§impl Memory for Via
impl Memory for Via
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 Via
impl !Send for Via
impl !Sync for Via
impl Unpin for Via
impl !UnwindSafe for Via
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