zeerust 0.2.1

A Z80 CPU Emulator
Documentation
1
2
3
4
5
6
7
8
9
extern crate zeerust;

use zeerust::z80;

#[test]
fn hello_zeerust() {
    let z80 = z80::Z80::default();
    let buf = z80::io::BufOutput::default();
}