rvsim 0.2.2

A RISC-V simulator implementing RV32G[C].
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate cc;
extern crate regex;

mod cpu;
#[cfg(feature = "rv32fd")]
mod softfloat;

fn main() {
    cpu::build();
    #[cfg(feature = "rv32fd")]
    softfloat::build();
}