1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Low level access to SiFive RISC-V processor cores
//!
//! This crate provides:
//!
//! - Access to core SiFive CSRs like bpm and feature disable;
//! - Access to assemble instructions like CEASE and cache control instructions;
//! - High level wrapper for handling SiFive platform features.

#![feature(asm, asm_const)]
#![no_std]

pub mod asm;
#[doc(hidden)] // hide by now, API has not been decided yet
pub mod feature;
pub mod register;