diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-24 10:00:25 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-24 11:48:39 +0100 |
commit | 8b71d31b27837409affbd69842d03f1ae0ea6e29 (patch) | |
tree | 3b85677d72fe5e7f30553a45d9d4f83a078da24c /scripts | |
parent | e2f88a56ffc73b8df5eb501ad59a8112d23ea35c (diff) | |
download | ghdl-8b71d31b27837409affbd69842d03f1ae0ea6e29.tar.gz ghdl-8b71d31b27837409affbd69842d03f1ae0ea6e29.tar.bz2 ghdl-8b71d31b27837409affbd69842d03f1ae0ea6e29.zip |
Change needs to be done in pynodes.
Diffstat (limited to 'scripts')
-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 |