dustbox 0.0.1

PC x86 emulator with the goal of easily running MS-DOS games on Windows, macOS and Linux.
Documentation
// these modules are re-exported as a single module

pub use self::render::*;
mod render;

pub use self::palette::*;
mod palette;

pub use self::font::*;
mod font;

pub use self::video_parameters::*;
mod video_parameters;

pub use self::modes::*;
mod modes;

pub use self::graphic_card::*;
mod graphic_card;

pub use self::crtc::*;
mod crtc;

pub use self::dac::*;
mod dac;