aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/python/pnodespy.py
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-20 18:16:03 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-20 18:16:03 +0200
commitb861073629c6c86c9095df98e35d78281ef9fa84 (patch)
tree4cc6163179960aa59bbdc3419ae041a46c31067d /src/vhdl/python/pnodespy.py
parent150116d2a2fe91f5d27b7fca1a19228ee5209c5a (diff)
downloadghdl-b861073629c6c86c9095df98e35d78281ef9fa84.tar.gz
ghdl-b861073629c6c86c9095df98e35d78281ef9fa84.tar.bz2
ghdl-b861073629c6c86c9095df98e35d78281ef9fa84.zip
libghdl: fix various issues.
Diffstat (limited to 'src/vhdl/python/pnodespy.py')
-rwxr-xr-xsrc/vhdl/python/pnodespy.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vhdl/python/pnodespy.py b/src/vhdl/python/pnodespy.py
index d2ea23125..b4d81a26a 100755
--- a/src/vhdl/python/pnodespy.py
+++ b/src/vhdl/python/pnodespy.py
@@ -138,6 +138,7 @@ def do_libghdl_nodes():
print('from libghdl import libghdl')
print("""
Null_Iir = 0
+
Null_Iir_List = 0
Iir_List_All = 1
@@ -230,7 +231,8 @@ def do_libghdl_tokens():
def do_libghdl_errorout():
- print("""from ctypes import c_int8, c_int32
+ print("""from ctypes import c_int8, c_int32, Structure
+
class Error_Record(Structure):
_fields_ = [("origin", c_int8),
("id", c_int8),