kr580 1.0.0

Desktop KR580VM80 / Intel 8080 emulator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod error;
pub mod export;
pub mod import;
pub mod program;
pub mod settings;

pub use error::{ExportError, ImportError, PersistenceError, SettingsError};
pub use export::{
    ExportFlagKind, ExportModel, ExportOptions, ExportRegisterKind, ExportTextSection,
    ExportXlsxPage, Exporters,
};
pub use import::Importers;
pub use program::{LEGACY_LENGTH, ProgramError, ProgramSerializer};
pub use settings::{
    ExportSettings, GeneralSettings, Language, NetworkMode, NetworkSettings, Settings,
    SettingsStore, SpeedPreset, StorageSettings, UiSettings,
};