1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! This crate provides vga specific functions, data structures,
//! and access to various registers.
//!
//! Memory addresses `0xA0000 -> 0xBFFFF` must be readable and writeable
//! this crate to work properly.

#![no_std]
#![warn(missing_docs)]

pub mod colors;
pub mod configurations;
pub mod drawing;
pub mod fonts;
pub mod registers;
pub mod vga;
pub mod writers;