From cde9eb089a9723a7b53dd5de2e8fafc91502a421 Mon Sep 17 00:00:00 2001 From: Jerry Zhao Date: Wed, 17 May 2023 15:23:33 -0700 Subject: [PATCH] Add help text on run-binaries --- common.mk | 3 +++ variables.mk | 1 + 2 files changed, 4 insertions(+) diff --git a/common.mk b/common.mk index ab237c9345..3ea209dc61 100644 --- a/common.mk +++ b/common.mk @@ -45,6 +45,9 @@ HELP_COMMANDS += \ " run-binary = run [./$(shell basename $(sim))] and log instructions to file" \ " run-binary-fast = run [./$(shell basename $(sim))] and don't log instructions" \ " run-binary-debug = run [./$(shell basename $(sim_debug))] and log instructions and waveform to files" \ +" run-binaries = run [./$(shell basename $(sim))] and log instructions to file" \ +" run-binaries-fast = run [./$(shell basename $(sim))] and don't log instructions" \ +" run-binaries-debug = run [./$(shell basename $(sim_debug))] and log instructions and waveform to files" \ " verilog = generate intermediate verilog files from chisel elaboration and firrtl passes" \ " firrtl = generate intermediate firrtl files from chisel elaboration" \ " run-tests = run all assembly and benchmark tests" \ diff --git a/variables.mk b/variables.mk index b4a581a808..d48233770c 100644 --- a/variables.mk +++ b/variables.mk @@ -25,6 +25,7 @@ HELP_PROJECT_VARIABLES = \ HELP_SIMULATION_VARIABLES = \ " BINARY = riscv elf binary that the simulator will run when using the run-binary* targets" \ +" BINARIES = list of riscv elf binary that the simulator will run when using the run-binaries* targets" \ " LOADMEM = riscv elf binary that should be loaded directly into simulated DRAM. LOADMEM=1 will load the BINARY elf" \ " LOADARCH = path to a architectural checkpoint directory that should end in .loadarch/, for restoring from a checkpoint" \ " VERBOSE_FLAGS = flags used when doing verbose simulation [$(VERBOSE_FLAGS)]" \