diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -8,12 +8,13 @@ //! - Data structures like the vector table //! - Safe wrappers around assembly instructions like `bkpt` -#![cfg_attr(target_arch = "arm", feature(core_intrinsics))] #![deny(missing_docs)] #![deny(warnings)] #![feature(asm)] #![feature(const_fn)] +#![feature(linkage)] #![feature(naked_functions)] +#![feature(used)] #![no_std] extern crate aligned; @@ -25,17 +26,8 @@ mod macros; #[macro_use] pub mod asm; -pub mod ctxt; pub mod exception; pub mod interrupt; pub mod itm; pub mod peripheral; pub mod register; - -/// A reserved spot in the vector table -#[derive(Clone, Copy)] -#[repr(u32)] -pub enum Reserved { - /// Reserved - Vector = 0, -} |