diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,16 +1,16 @@ -#![feature(no_std)] +#![feature(no_std, core_str_ext, core_slice_ext)] #![feature(asm)] #![no_std] #![crate_name = "x86"] #![crate_type = "lib"] -#[cfg(test)] #[macro_use] -extern crate std; +mod bitflags; +#[cfg(test)] #[macro_use] -extern crate bitflags; +extern crate std; #[macro_use] extern crate raw_cpuid; |