From bf594c611fb6066efded621f4ff301b7d78a9aed Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 3 Feb 2026 19:03:12 +0100 Subject: nasm: improve message on the -D flag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- crates/nasm/src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crates/nasm') diff --git a/crates/nasm/src/main.rs b/crates/nasm/src/main.rs index e6c0042..007b897 100644 --- a/crates/nasm/src/main.rs +++ b/crates/nasm/src/main.rs @@ -29,7 +29,9 @@ fn print_help() { println!("Options:"); println!(" -a, --asan\t\tEnable the Address Sanitizer."); println!(" -c, --config \tLinker configuration to be used, whether an identifier or a file path."); - println!(" -D (=VALUE)\tDefine an 8-bit variable on the global scope (default: 1)"); + println!( + " -D (=VALUE)\tDefine an 8-bit variable on the global scope ('VALUE' defaults to '1')" + ); println!(" -h, --help\t\tPrint this message."); println!(" -o, --out \tFile path where the output should be located after execution."); println!(" --prelude\t\tPrint the 'prelude' file; a file that can be used for defining default implementations for nasm-only features."); -- cgit v1.2.3