summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.rs3
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,
}