Skip to content

ics-jku/instruction-decoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

example useage:

use instruction_decoder::Decoder;

pub fn main() {
    let mut test_decoder = Decoder::new(&vec![include_str!("RV32I.toml").to_string()]);
    let inst = 0xff460593;

    if let Ok(iform) = test_decoder.decode_from_i64(inst, 32) {
        println!("{:?}", iform);
    }
}

for the spec, see tomlspec.md or the github wiki

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages