Skip to content

jrozner/msp430-asm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

msp430-asm

A disassembly engine written in Rust for the msp430.

Use

There is only one function exposed that you need to care about for disassembling instructions: decode.

extern crate msp430_asm;

use msp430_asm::decode;

let data = [0xf9, 0x23];

match decode(&data) {
    Ok(inst) => println!("{}", inst),
    Err(e) => println!("error decoding instruction: {}", e),
}

License

This project is licensed under the terms of the MIT open source license

About

Dissassembly library for msp430 machine code

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages