rubbler 0.1.2

Rubbler is a RISC-V assembler written in Rust 🦀. This library was written with the main purpose of embedding a simple RISC-V assembler inside of a RISC-V CPU test bench code written with verilator.
Documentation
1
2
3
pub fn error(line_number: i32, what: &str, description: &str) -> String {
    "[Line ".to_string() + &(line_number + 1).to_string() + "] " + what + ": " + description
}