forked from M-Labs/zynq-rs
12 lines
179 B
Rust
12 lines
179 B
Rust
#![no_std]
|
|
#![feature(asm, global_asm)]
|
|
#![feature(never_type)]
|
|
|
|
pub mod asm;
|
|
pub mod regs;
|
|
pub mod cache;
|
|
pub mod mmu;
|
|
pub mod mutex;
|
|
|
|
global_asm!(include_str!("exceptions.s"));
|