[syn] Add some more example commands to the readme
Signed-off-by: Michael Schaffner <msf@opentitan.org>
diff --git a/hw/syn/README.md b/hw/syn/README.md
index cb32c3a..2e195c3 100644
--- a/hw/syn/README.md
+++ b/hw/syn/README.md
@@ -16,6 +16,18 @@
The main script that powers synthesis is `hw/syn/tools/dc/run-syn.tcl`.
+To follow the progress of the different synthesis flow stages (analysis, elaboration, etc.), it is recommended to use the `tail -f` command on the report file of interest.
+
+For example, overall status can be observed with
+```
+tail -f `$SCRATCH_ROOT/{branch_name}/chip_earlgrey_asic-syn-dc/default/synthesis.log`
+```
+
+Another example would be the elaboration status
+```
+tail -f `$SCRATCH_ROOT/{branch_name}/chip_earlgrey_asic-syn-dc/default/REPORTS/elab.rpt`
+```
+
## Re-run Interactive Synthesis
Assuming the above synthesis steps produces an error or creates a situation where we must run synthesis interactively for debug, it can be done as follows.