sifive_fe310_g002/lib.rs
1#![no_std]
2#![doc = include_str!("../README.md")]
3
4/// Re-export RISC-V intrinsics because they'll be useful
5pub use riscv;
6
7/// Bindings for interacting with CLINT (Core-Local INterrupt Controller)
8pub mod clint;
9/// Bindings for interacting with the GPIO controller
10pub mod gpio;
11/// Bindings for interacting with the SPI controllers
12pub mod spi;
13/// Bindings for interacting with the UART controllers
14pub mod uart;