dustbox 0.0.1

PC x86 emulator with the goal of easily running MS-DOS games on Windows, macOS and Linux.
Documentation
#![allow(unused_imports)]
#![allow(dead_code)]

extern crate toml;

extern crate chrono;
extern crate rand;
extern crate rand_xorshift;
extern crate tempdir;
extern crate image;

#[macro_use]
extern crate tera;

#[macro_use]
extern crate quick_error;

#[macro_use]
extern crate simple_error;

#[cfg(test)] #[macro_use]
extern crate pretty_assertions;

#[macro_use]
extern crate serde_derive;

extern crate bincode;

extern crate sdl2;

pub mod machine;
pub mod cpu;
pub mod memory;
pub mod gpu;
pub mod pic;
pub mod pit;
pub mod cmos;
pub mod bios;
pub mod codepage;
pub mod tools;
pub mod hex;
pub mod debug;
pub mod ndisasm;
pub mod string;
pub mod keyboard;
pub mod mouse;
pub mod storage;

mod interrupt;