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§

source

fn read(&mut self) -> u8

Read a byte from the port. This is implementation-defined, and may have side effects.

source

fn write(&mut self, value: u8)

Write a byte to the port. This is implementation-defined.

source

fn poll(&mut self, cycles_since_poll: u64, total_cycle_count: u64) -> bool

Poll the port for interrupts. A port may trigger an interrupt for any implementation-defined reason.

source

fn reset(&mut self)

Reset the port to its initial state, analogous to a system reboot.

Implementors§