bootloader 0.6.2

An experimental pure-Rust x86 bootloader.
1
2
3
4
5
6
7
8
#[cfg(not(feature = "vga_320x200"))]
pub use self::vga_text_80x25::*;

#[cfg(feature = "vga_320x200")]
pub use self::vga_320x200::*;

mod vga_320x200;
mod vga_text_80x25;