1 #![cfg_attr(target_arch = "riscv64", feature(riscv_ext_intrinsics))] 2 #![no_std] 3 extern crate alloc; 4 5 mod arch; 6 7 pub use arch::*; 8