zynq-rs/libcortex_r5/src/lib.rs

10 lines
154 B
Rust
Raw Normal View History

2022-11-10 22:23:04 +08:00
#![no_std]
#![feature(llvm_asm, global_asm)]
#![feature(never_type)]
#![feature(const_fn)]
extern crate alloc;
pub mod asm;
pub mod regs;
pub mod cache;