1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! An emulator for an idealised z80 CPU.

#[macro_use]
extern crate enum_display_derive;

pub mod cpu;
pub mod ops;
#[macro_use]
mod assert;
pub mod examples;
pub mod z80;