vga/src/lib.rs

16 lines
352 B
Rust
Raw Normal View History

2020-03-12 12:10:18 -05:00
//! This crate provides vga specific functions, data structures,
//! and access to various registers.
2020-03-12 13:04:25 -05:00
//!
//! Memory addresses `0xA0000 -> 0xBFFFF` must be readable and writeable
//! this crate to work properly.
2020-03-12 12:10:18 -05:00
#![no_std]
#![warn(missing_docs)]
2020-03-15 18:49:04 -05:00
pub mod colors;
pub mod configurations;
pub mod fonts;
pub mod registers;
pub mod vga;
pub mod writers;