riscv_assembler 0.1.0

A Rust implementation of a RISC-V (RV32IM) assembler with both a library and CLI tool.
Documentation
1
2
3
4
5
6
7
8
//! RISCVIM32 assembler
pub mod assembler;
pub mod error;
pub mod isa;
pub mod lexer;
pub mod parser;
pub mod symbol;
pub mod utils;