WE 32100 COFF disassembler
Find a file
2019-02-03 10:00:06 -08:00
src Added README, LICENSE, and copyright notices. 2019-02-03 09:55:25 -08:00
.gitignore Initial commit (moved project) 2019-01-17 12:38:31 -08:00
Cargo.lock Initial commit (moved project) 2019-01-17 12:38:31 -08:00
Cargo.toml Initial commit (moved project) 2019-01-17 12:38:31 -08:00
LICENSE.txt ACTUALLY add README and LICENSE files 2019-02-03 09:57:11 -08:00
README.md Another typo 2019-02-03 10:00:06 -08:00

WE32100 COFF Object File Disassembler

This is a disassembler for WE32100 COFF object files (both linked executables and unlinked objects).

It is a work in progress, and not very good at the moment. However, it's Good Enough™ for some fairly basic usage.

Usage

we32dis [-n <sec>] -h|-i|-s|-d <file>

   -n            Target the named section (e.g. .text, .data)
   -h            Dump file header information
   -i            Dump section information
   -t            Dump symbol table
   -d            Disassemble the named section as WE32100 source
   <file>        The input file

Building

This project is written in Rust (1.31.0 at a minumim). For more information on Rust, see The Rust Language Homepage. To install Rust, it is very convenient to use the rustup toolchain installer, however, other options are available.

LICENSE

This project is distributed under the MIT License. See the file LICENSE.txt for more information.