11 releases (4 stable)
new 1.0.3 | Dec 6, 2024 |
---|---|
1.0.2 | Oct 2, 2024 |
0.3.1 | Sep 24, 2024 |
0.2.3 | Jul 11, 2024 |
0.1.0 | Jul 8, 2024 |
#911 in Parser implementations
112 downloads per month
Used in objdiff-core
40KB
900 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
~270–740KB
~17K SLoC