1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! *Drone* Hardware Independent Layer. #![feature(asm)] #![feature(specialization)] #![no_std] #![deny(missing_docs)] #![cfg_attr(feature = "clippy", feature(plugin))] #![cfg_attr(feature = "clippy", plugin(clippy))] #![cfg_attr(feature = "clippy", allow(precedence, doc_markdown))] #[cfg(test)] #[macro_use] extern crate drone_test; pub mod reg; pub mod memory; pub mod exception;