[][src]Trait zeerust::z80::io::InputDevice

pub trait InputDevice {
    fn input(&self) -> u8;
}

An InputDevice can be read from, one byte at a time

Required methods

fn input(&self) -> u8

Read a single byte

Loading content...

Implementors

impl InputDevice for BufInput[src]

fn input(&self) -> u8[src]

Read the right-most byte from the internal buffer

Loading content...