aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/nasm/src/main.rs4
1 files changed, 3 insertions, 1 deletions
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 <FILE>\tLinker configuration to be used, whether an identifier or a file path.");
- println!(" -D <NAME>(=VALUE)\tDefine an 8-bit variable on the global scope (default: 1)");
+ println!(
+ " -D <NAME>(=VALUE)\tDefine an 8-bit variable on the global scope ('VALUE' defaults to '1')"
+ );
println!(" -h, --help\t\tPrint this message.");
println!(" -o, --out <FILE>\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.");