libcortex_r5: add lib.rs

feature/cortex-r5
Brad Bondurant 2022-11-10 09:23:04 -05:00
parent efa9a17cd2
commit ddc184cd89
1 changed files with 10 additions and 0 deletions

10
libcortex_r5/src/lib.rs Normal file
View File

@ -0,0 +1,10 @@
#![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;