13 lines
253 B
Rust
13 lines
253 B
Rust
use crate::system::rv32;
|
|
|
|
pub mod encoding;
|
|
pub mod decode;
|
|
pub mod i;
|
|
|
|
// Instruction bitmasks
|
|
// This will be awkward as the instruction types
|
|
// are sometimes shared accross modules (float / double)
|
|
// Instruction parsing
|
|
// Extensibility
|
|
|