n64romconvert

It's a tool containing 2 binaries to help you check and convert between Nintendo 64 ROM formats, including Byte-Swapped Big Endian (v64), Little endian (n64), and Big Endian (z64), on the CLI.

Installation

You can issue a cargo install like this: cargo install n64romconvert, or issue make.

Usage

n64romconvert comes with 2 sub-tools, n64romconvert itself, and another binary called n64romtype, that uses this crate's determine_format function to determine the format of a given ROM.

n64romconvert:

``` Small tool to help you convert between Nintendo 64 ROM formats, on the CLI.

Usage: n64romconvert [OPTIONS]

Arguments:

Options: -T, --output-type specify the output ROM type. selects z64 by default. -o, --outfile specify the output file. -h, --help Print help -V, --version Print version ```

n64romtype:

``` Small tool to help you convert between Nintendo 64 ROM formats, on the CLI.

Usage: n64romtype

Arguments:

Options: -h, --help Print help -V, --version Print version ```