diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-04-30 22:41:12 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-04-30 22:41:12 +0200 |
| commit | edd501bed01e62149ed84ef9ae30e639f34a5e60 (patch) | |
| tree | 4a968a82a280dba77fd11d9b565d91ec2e572344 /crates/xa65/src/main.rs | |
| parent | dd7c8cba5aae6b62a5f4adde165d81dfa630c635 (diff) | |
| download | tools.nes-edd501bed01e62149ed84ef9ae30e639f34a5e60.tar.gz tools.nes-edd501bed01e62149ed84ef9ae30e639f34a5e60.zip | |
xa65: sort the flags on the help message
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'crates/xa65/src/main.rs')
| -rw-r--r-- | crates/xa65/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/xa65/src/main.rs b/crates/xa65/src/main.rs index 77e5127..03bdc82 100644 --- a/crates/xa65/src/main.rs +++ b/crates/xa65/src/main.rs @@ -31,9 +31,9 @@ fn print_help() { println!(" -C, --config <FILE>\tLinker configuration to be used, whether an identifier or a file path."); println!(" -h, --help\t\tPrint this message."); println!(" -n, --no-errors\tError out if the output differ or 'nasm' has produced an error."); + println!(" -o, --out <FILE>\tFile path where the output should be located after execution."); println!(" -s, --strict\t\tBe more strict on 'nasm' by adding the address-sanitizer and writing debug/analysis information."); println!(" --stats\t\tPrint statistics to the standard output."); - println!(" -o, --out <FILE>\tFile path where the output should be located after execution."); println!(" --target nes\t\tUsed for compatibility with 'ca65'."); println!(" -v, --version\t\tPrint the version of this program."); std::process::exit(0); |
