2 个不稳定版本

0.2.0 2023年1月30日
0.1.0 2021年2月28日

383调试

MIT 许可证

71KB
2K SLoC

msp430-asm

用于 msp430 的用 Rust 编写的反汇编引擎。

使用

只有一个函数公开供您使用,用于反汇编指令: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),
}

许可证

本项目根据MIT开源许可证的条款进行许可。

无运行时依赖