vexriscv-rust/src/lib.rs

7 lines
133 B
Rust
Raw Permalink Normal View History

2020-06-14 19:39:24 +08:00
//! Low level access to VexRiscv RISC-V cores
2017-09-19 22:04:12 +08:00
#![no_std]
2021-07-08 16:43:36 +08:00
#![cfg_attr(feature = "inline-asm", feature(llvm_asm))]
2017-09-19 22:04:12 +08:00
2018-03-28 02:17:44 +08:00
pub mod register;