1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#![no_std] #![allow(dead_code)] pub(crate) mod emulator; pub(crate) mod settings; pub(crate) mod utils; pub(crate) mod z80; pub mod error; pub mod host; pub mod zx; pub use emulator::{Emulator, Stopwatch}; pub use settings::RustzxSettings; pub use utils::EmulationSpeed; extern crate alloc; pub type Result<T> = core::result::Result<T, error::Error>;