diff options
author | Jonas Baggett <jonasb@tranquille.ch> | 2016-08-05 14:28:25 +0200 |
---|---|---|
committer | Jonas Baggett <jonasb@tranquille.ch> | 2016-11-02 13:25:04 +0100 |
commit | df259b99050928cd72874377d7797c0de797935b (patch) | |
tree | e28835c3357a82ba1896130445d16f4999a480d7 /doc/Simulation_and_runtime.rst | |
parent | b869a4acb52358fe8ca5decaac826af056bfdfca (diff) | |
download | ghdl-df259b99050928cd72874377d7797c0de797935b.tar.gz ghdl-df259b99050928cd72874377d7797c0de797935b.tar.bz2 ghdl-df259b99050928cd72874377d7797c0de797935b.zip |
Support added for * and **. Please note that wildcards inside names like /top/sub*/... are not supported yet, only synthax like /top/*/... works for now. Support for wildcards inside names will be added on version 1.2, at the same time as simple regexp support.
Current version set to 1.1
Diffstat (limited to 'doc/Simulation_and_runtime.rst')
-rw-r--r-- | doc/Simulation_and_runtime.rst | 26 |
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> |