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

pub trait OutputDevice {
    fn output(&self, val: u8);
}

An OutputDevice can be written to, one byte at a time

Required methods

fn output(&self, val: u8)

Write a single byte

Loading content...

Implementors

impl OutputDevice for BufOutput[src]

fn output(&self, val: u8)[src]

Write a byte to the end of the internal buffer

Loading content...