vexriscv-rust/src/lib.rs

7 lines
128 B
Rust
Raw 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]
#![cfg_attr(feature = "inline-asm", feature(asm))]
2017-09-19 22:04:12 +08:00
2018-03-28 02:17:44 +08:00
pub mod register;