kr580 1.0.0

Desktop KR580VM80 / Intel 8080 emulator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod actor;
pub mod command;
pub mod emulator;
pub mod error;

pub use crate::devices::{
    ConnectionState, DeviceSnapshot, DeviceStatus, GRAPHICS_HEIGHT, GRAPHICS_WIDTH, IoBus,
    MonitorPhase, MonitorState, NetworkMode, NetworkState, PrinterState, StorageState, TEXT_COLS,
    TEXT_ROWS, TextCell, decode_oem_text,
};
pub use actor::{EmulatorHandle, MIN_STEP_INTERVAL, initial_snapshot, spawn_emulator};
pub use command::{AppCommand, AppEvent, AppSnapshot, RunMode};
pub use emulator::{DEFAULT_STEP_INTERVAL, Emulator};
pub use error::AppError;