diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-22 23:33:33 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-22 23:33:33 +0100 |
| commit | 4115d83eb537ffbd81e2fd8d12790a8fad769199 (patch) | |
| tree | b55c6b73a488d6dab7631463ec22cb575c7e29b9 /crates/nasm/src | |
| parent | 4628873cfc53d3bdc7a0834b3edbb02b0b9cf4a7 (diff) | |
| download | tools.nes-4115d83eb537ffbd81e2fd8d12790a8fad769199.tar.gz tools.nes-4115d83eb537ffbd81e2fd8d12790a8fad769199.zip | |
nasm: Allow file paths for the configuration
This opens up the door for developers to pass their own configuration
files.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'crates/nasm/src')
| -rw-r--r-- | crates/nasm/src/main.rs | 5 |
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>, |
