aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-04-30 22:41:12 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-04-30 22:41:12 +0200
commitedd501bed01e62149ed84ef9ae30e639f34a5e60 (patch)
tree4a968a82a280dba77fd11d9b565d91ec2e572344 /crates
parentdd7c8cba5aae6b62a5f4adde165d81dfa630c635 (diff)
downloadtools.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')
-rw-r--r--crates/xa65/src/main.rs2
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);