Add some documentation in the cli help output

This commit is contained in:
2026-01-06 23:14:37 +01:00
parent 9861187fa6
commit d1b4cc7b56

View File

@@ -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,
}