From d1b4cc7b56bba59a24ff8d51d982163796b0bcdd Mon Sep 17 00:00:00 2001 From: taitep Date: Tue, 6 Jan 2026 23:14:37 +0100 Subject: [PATCH] Add some documentation in the cli help output --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) 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, }