Add a dependency on the x86_64 crate

This commit is contained in:
Philipp Oppermann
2017-04-13 19:40:20 +02:00
parent 0ee4ed738a
commit eb5c9afa51
2 changed files with 2 additions and 0 deletions

View File

@@ -12,3 +12,4 @@ volatile = "0.1.0"
spin = "0.4.5"
multiboot2 = "0.1.0"
bitflags = "0.7.0"
x86_64 = "0.1.2"

View File

@@ -10,6 +10,7 @@ extern crate spin;
extern crate multiboot2;
#[macro_use]
extern crate bitflags;
extern crate x86_64;
#[macro_use]
mod vga_buffer;