diff --git a/libcortex_r5/src/lib.rs b/libcortex_r5/src/lib.rs new file mode 100644 index 0000000..169d9b7 --- /dev/null +++ b/libcortex_r5/src/lib.rs @@ -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; \ No newline at end of file