12 releases (5 stable)
new 1.0.4 | Mar 25, 2025 |
---|---|
1.0.3 | Dec 6, 2024 |
1.0.2 | Oct 2, 2024 |
0.3.1 | Sep 24, 2024 |
0.1.0 | Jul 8, 2024 |
#104 in No standard library
93 downloads per month
Used in objdiff-core
40KB
904 lines
cwextab

WIP CodeWarrior Extab (Exception Table) decoder tool
Usage
use cwextab::*;
fn example(extab: &[u8]){
let result = decode_extab(extab);
let data = match result {
Ok(val) => val,
Err(e) => {
panic!("An error happened: {}", e);
},
};
//do stuffs
}
Dependencies
~220–660KB
~15K SLoC