diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-06-04 09:25:48 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-06-04 16:27:52 +0200 |
commit | edadae250a40a542af0c850b57d08f1d00067c25 (patch) | |
tree | 87937342e5d6ee988ebf3bd008d314a26ce8b81f /pyGHDL | |
parent | 7ece912432d462bf361d90a05df84c34724771e1 (diff) | |
download | ghdl-edadae250a40a542af0c850b57d08f1d00067c25.tar.gz ghdl-edadae250a40a542af0c850b57d08f1d00067c25.tar.bz2 ghdl-edadae250a40a542af0c850b57d08f1d00067c25.zip |
vhdl: add a warning for unassociated ports
Diffstat (limited to 'pyGHDL')
-rw-r--r-- | pyGHDL/libghdl/errorout.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pyGHDL/libghdl/errorout.py b/pyGHDL/libghdl/errorout.py index 5aa8de1c8..928046857 100644 --- a/pyGHDL/libghdl/errorout.py +++ b/pyGHDL/libghdl/errorout.py @@ -46,7 +46,8 @@ class Msgid(IntEnum): Warnid_Analyze_Assert = 27 Warnid_Attribute = 28 Warnid_Useless = 29 - Warnid_Static = 30 - Msgid_Warning = 31 - Msgid_Error = 32 - Msgid_Fatal = 33 + Warnid_No_Assoc = 30 + Warnid_Static = 31 + Msgid_Warning = 32 + Msgid_Error = 33 + Msgid_Fatal = 34 |