Trait libnoentiendo::memory::Port
source · pub trait Port {
// Required methods
fn read(&mut self) -> u8;
fn write(&mut self, value: u8);
fn poll(&mut self, cycles_since_poll: u64, total_cycle_count: u64) -> bool;
fn reset(&mut self);
}
Expand description
A Port that can be read from, written to, reset, or polled for interrupts. Used in the MOS 6520 PIA and the 6522 VIA.
Required Methods§
sourcefn read(&mut self) -> u8
fn read(&mut self) -> u8
Read a byte from the port. This is implementation-defined, and may have side effects.