diff options
Diffstat (limited to 'python/libghdl/thin/vhdl/flists.py')
-rw-r--r-- | python/libghdl/thin/vhdl/flists.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/libghdl/thin/vhdl/flists.py b/python/libghdl/thin/vhdl/flists.py new file mode 100644 index 000000000..6cdd39ff3 --- /dev/null +++ b/python/libghdl/thin/vhdl/flists.py @@ -0,0 +1,11 @@ +from libghdl import libghdl +from ctypes import c_int32 + +Flist_Type = c_int32 + +Ffirst = 0 +Flast = libghdl.vhdl__flists__flast + +Length = libghdl.vhdl__flists__length + +Get_Nth_Element = libghdl.vhdl__flists__get_nth_element |