forked from M-Labs/zynq-rs
19 lines
308 B
Rust
19 lines
308 B
Rust
#![no_std]
|
|
#![feature(llvm_asm, global_asm)]
|
|
#![feature(never_type)]
|
|
|
|
extern crate alloc;
|
|
|
|
pub mod asm;
|
|
pub mod regs;
|
|
pub mod cache;
|
|
pub mod mmu;
|
|
pub mod mutex;
|
|
pub mod sync_channel;
|
|
mod uncached;
|
|
mod fpu;
|
|
pub use uncached::UncachedSlice;
|
|
pub use fpu::enable_fpu;
|
|
|
|
global_asm!(include_str!("exceptions.s"));
|