diff --git a/Cargo.toml b/Cargo.toml index 1d3446b..c96dfb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,4 @@ rlibc = "1.0" volatile = "0.1.0" spin = "0.4.5" multiboot2 = "0.1.0" +bitflags = "0.7.0" diff --git a/src/lib.rs b/src/lib.rs index 86fc2fd..7089496 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,8 @@ extern crate rlibc; extern crate volatile; extern crate spin; extern crate multiboot2; +#[macro_use] +extern crate bitflags; #[macro_use] mod vga_buffer;