diff options
| author | taitep <taitep@taitep.se> | 2026-01-06 23:14:37 +0100 |
|---|---|---|
| committer | taitep <taitep@taitep.se> | 2026-01-06 23:14:37 +0100 |
| commit | d1b4cc7b56bba59a24ff8d51d982163796b0bcdd (patch) | |
| tree | 0c14f56a08e9ac4792630ca59364d3cf54f5369d | |
| parent | 9861187fa637fb5fa63ea850a02057fbb08b52c2 (diff) | |
Add some documentation in the cli help output
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index a9b8672..7be2d20 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,9 +21,12 @@ use crate::basic_uart::BasicUart; mod execload; +/// Taitep's RISC-V Emulator #[derive(Parser)] struct Args { + /// Path to ELF or raw binary executable to load executable: PathBuf, + /// Make CPU wait for a GDB connection before starting execution #[arg(long)] wait: bool, } |
