aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authortgingold <tgingold@users.noreply.github.com>2016-11-02 17:32:25 +0100
committerGitHub <noreply@github.com>2016-11-02 17:32:25 +0100
commit4c7c53b2fb53cd6ff03776b4ce47f6e9f30fd52f (patch)
tree848058e06948a9f57411d33db1d96cd3f47969ac /doc
parent820589831ff4217081f863b206793a42b9260fd0 (diff)
parentdf259b99050928cd72874377d7797c0de797935b (diff)
downloadghdl-4c7c53b2fb53cd6ff03776b4ce47f6e9f30fd52f.tar.gz
ghdl-4c7c53b2fb53cd6ff03776b4ce47f6e9f30fd52f.tar.bz2
ghdl-4c7c53b2fb53cd6ff03776b4ce47f6e9f30fd52f.zip
Merge pull request #184 from Jonsba/jonsba/signals_selection
Support added for * and **. Current version set to 1.1
Diffstat (limited to 'doc')
-rw-r--r--doc/Simulation_and_runtime.rst26
1 files changed, 22 insertions, 4 deletions
diff --git a/doc/Simulation_and_runtime.rst b/doc/Simulation_and_runtime.rst
index 518c8a290..25a779fb2 100644
--- a/doc/Simulation_and_runtime.rst
+++ b/doc/Simulation_and_runtime.rst
@@ -123,16 +123,34 @@ all options available, including the debugging one.
Filter signals to be dumped to the wave file according to the wave option
file provided.
- Here is a description of the wave option file format :
+ Here is a description of the wave option file format currently supported :
- $ version = 1.0 # Optional
+ $ version = 1.1 # Optional
- # Signals in packages :
+ # Path format for signals in packages :
my_pkg.global_signal_a
- # Signals in entities :
+ # Path format for signals in entities :
/top/sub/clk
+ # Dumps every signals named reset in first level sub entities of top
+ /top/*/reset
+
+ # Dumps every signals named reset in recursive sub entities of top
+ /top/**/reset
+
+ # Dump every signals of sub2 which could be anywhere in design except on
+ # top level
+ /**/sub2/*
+
+ # Dump every signals of sub3 which must be a first level sub entity of the
+ # top level
+ /*/sub3/*
+
+ # Dump every signals of the first level sub entities of sub3 (but not
+ # those of sub3)
+ /**/sub3/*/*
+
.. option:: --write-opt-file=<FILENAME>