aboutsummaryrefslogtreecommitdiff
path: root/crates/nasm/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/nasm/src/main.rs')
-rw-r--r--crates/nasm/src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/nasm/src/main.rs b/crates/nasm/src/main.rs
index c93dda0..ff8bcae 100644
--- a/crates/nasm/src/main.rs
+++ b/crates/nasm/src/main.rs
@@ -14,7 +14,10 @@ struct Args {
/// when this argument is not given.
file: Option<String>,
- /// Linker configuration to be used. Defaults to 'nrom'.
+ /// Linker configuration to be used. This configuration can be an identifier
+ /// for the configurations already baked in into this application, or it can
+ /// be a file path to a configuration of your choosing. See the
+ /// documentation for more information on this format. Defaults to 'nrom'.
#[arg(short = 'c', long)]
config: Option<String>,