diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-12-24 16:33:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 16:33:33 +0100 |
commit | a1b9335c08140fc9fc5d02591f3cb2870c5ba988 (patch) | |
tree | ea1659124a516bcadb592f836c3426f93d1b09fb /scripts/pnodespy.py | |
parent | fd0c0bc0b8357f58d44f9b7e03367d5c2e3e906f (diff) | |
parent | 1e5aad63f64ff9b91b1a10c16f82fa29de42dbb4 (diff) | |
download | ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.tar.gz ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.tar.bz2 ghdl-a1b9335c08140fc9fc5d02591f3cb2870c5ba988.zip |
Merge pull request #2282 from Paebbels/paebbels/ams
Activate VHDL-2008 and VHDL-AMS based on selected VHDL dialect
Diffstat (limited to 'scripts/pnodespy.py')
-rwxr-xr-x | scripts/pnodespy.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/pnodespy.py b/scripts/pnodespy.py index caa06b2b9..b50f9c568 100755 --- a/scripts/pnodespy.py +++ b/scripts/pnodespy.py @@ -210,7 +210,19 @@ def do_libghdl_nodes(): ) from pyGHDL.libghdl.vhdl.tokens import Tok + __all__ = [ + "Null_Iir", + "Null_Iir_List", + "Iir_List_All", + "Null_Iir_Flist", + "Iir_Flist_Others", + "Iir_Flist_All", + ] + Null_Iir = 0 + \"\"\" + Null element for an IIR node reference. + \"\"\" Null_Iir_List = 0 Iir_List_All = 1 |