bootloader 0.9.3

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

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

#[cfg(feature = "vga_320x200")]
mod vga_320x200;

#[cfg(not(feature = "vga_320x200"))]
mod vga_text_80x25;