From 2dfdba6efc7559ad44ba4f1842af8c629596ea4a Mon Sep 17 00:00:00 2001 From: mrcmry Date: Sat, 13 Jun 2026 10:57:03 +0200 Subject: [PATCH] gatemate: add default values to vopt descriptions (#1733) --- himbaechel/uarch/gatemate/gatemate.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/himbaechel/uarch/gatemate/gatemate.cc b/himbaechel/uarch/gatemate/gatemate.cc index 219cb71e..5d04336d 100644 --- a/himbaechel/uarch/gatemate/gatemate.cc +++ b/himbaechel/uarch/gatemate/gatemate.cc @@ -40,10 +40,10 @@ po::options_description GateMateImpl::getUArchOptions() specific.add_options()("out", po::value(), "textual configuration bitstream output file"); specific.add_options()("ccf", po::value(), "name of constraints file"); specific.add_options()("allow-unconstrained", "allow unconstrained IOs"); - specific.add_options()("fpga_mode", po::value(), "performance mode (1:lowpower, 2:economy, 3:speed)"); - specific.add_options()("time_mode", po::value(), "timing mode (1:best, 2:typical, 3:worst)"); + specific.add_options()("fpga_mode", po::value(), "performance mode (1:lowpower, 2:economy, 3:speed (default))"); + specific.add_options()("time_mode", po::value(), "timing mode (1:best, 2:typical, 3:worst (default))"); specific.add_options()("strategy", po::value(), - "multi-die clock placement strategy (mirror, full or clk1)"); + "multi-die clock placement strategy (mirror (default), full or clk1)"); specific.add_options()("force_die", po::value(), "force specific die (example 1A,1B...)"); specific.add_options()("clk-cp", "use CP lines for CLK and EN"); specific.add_options()("no-cpe-cp", "do not use CP lines pass through CPE");