#![no_std]
#![crate_type = "lib"]
#![crate_name = "emlib"]
#![allow(warnings)]
#![feature(no_std)]
#![feature(core, collections, convert)]
#![feature(slice_patterns)]
#![feature(asm)]
#![feature(naked_functions)]
#![feature(linkage)]
#![feature(used)]
#[macro_use]
pub mod acmp;
pub mod adc;
pub mod chip;
pub mod cmu;
pub mod dma;
pub mod ebi;
pub mod emu;
pub mod gpio;
pub mod i2c;
pub mod irq;
pub mod lesense;
pub mod leuart;
pub mod prs;
pub mod rtc;
pub mod timer;
pub mod usart;
mod std {
pub use core::*;
}