aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-disp_vhdl.adb
diff options
context:
space:
mode:
authorT. Meissner <programming@goodcleanfun.de>2019-09-19 06:30:22 +0200
committertgingold <tgingold@users.noreply.github.com>2019-09-19 06:30:22 +0200
commitacac3f18888c0989ae4d7d8a4fb20a90edc2a38c (patch)
treee0d9dc9f6186f0002c8c7b4ac6cea6980577bf9a /src/synth/netlists-disp_vhdl.adb
parent4a04f914b836c21a6d036f72846f8698d907cf43 (diff)
downloadghdl-acac3f18888c0989ae4d7d8a4fb20a90edc2a38c.tar.gz
ghdl-acac3f18888c0989ae4d7d8a4fb20a90edc2a38c.tar.bz2
ghdl-acac3f18888c0989ae4d7d8a4fb20a90edc2a38c.zip
synth: Add support for PSL cover directive (#930)
* synth: Add support for PSL cover directive * testsuite/synth: Add tests for PSL cover directives
Diffstat (limited to 'src/synth/netlists-disp_vhdl.adb')
-rw-r--r--src/synth/netlists-disp_vhdl.adb4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb
index ef9db9b30..632966645 100644
--- a/src/synth/netlists-disp_vhdl.adb
+++ b/src/synth/netlists-disp_vhdl.adb
@@ -743,6 +743,10 @@ package body Netlists.Disp_Vhdl is
Disp_Template
(" \l0: assert \i0 = '1' severity warning; -- assume" & NL,
Inst);
+ when Id_Cover =>
+ Disp_Template
+ (" \l0: assert \i0 = '1' severity note; -- cover" & NL,
+ Inst);
when others =>
Disp_Instance_Gate (Inst);
end case;