From 25f61f81547d51ecc3983eb5779813fb94ca90ef Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 4 Jun 2019 18:25:53 +0200 Subject: vhdl: adjust formatters and add python bindings. --- src/vhdl/python/libghdl.adb | 2 ++ src/vhdl/python/libghdl/thin/vhdl/formatters.py | 14 ++++++++++++++ src/vhdl/python/libghdl/thin/vhdl/sem.py | 3 +++ 3 files changed, 19 insertions(+) create mode 100644 src/vhdl/python/libghdl/thin/vhdl/formatters.py create mode 100644 src/vhdl/python/libghdl/thin/vhdl/sem.py (limited to 'src/vhdl/python') diff --git a/src/vhdl/python/libghdl.adb b/src/vhdl/python/libghdl.adb index cf87cb158..7226e5295 100644 --- a/src/vhdl/python/libghdl.adb +++ b/src/vhdl/python/libghdl.adb @@ -21,8 +21,10 @@ with Ghdllocal; with Ghdlcomp; with Errorout.Memory; with Files_Map.Editor; +with Vhdl.Formatters; pragma Unreferenced (Errorout.Memory); -- At least from Ada code. pragma Unreferenced (Files_Map.Editor); +pragma Unreferenced (Vhdl.Formatters); package body Libghdl is function Set_Option (Opt : Thin_String_Ptr; Len : Natural) return Integer is diff --git a/src/vhdl/python/libghdl/thin/vhdl/formatters.py b/src/vhdl/python/libghdl/thin/vhdl/formatters.py new file mode 100644 index 000000000..9c8bf9afb --- /dev/null +++ b/src/vhdl/python/libghdl/thin/vhdl/formatters.py @@ -0,0 +1,14 @@ +from libghdl import libghdl +from ctypes import c_int32, c_char_p + +Indent_String = libghdl.vhdl__formatters__indent_string + +Allocate_Handle = libghdl.vhdl__formatters__allocate_handle + +Get_Length = libghdl.vhdl__formatters__get_length +Get_Length.restype = c_int32 + +Get_C_String = libghdl.vhdl__formatters__get_c_string +Get_C_String.restype = c_char_p + +Free_Handle = libghdl.vhdl__formatters__free_handle diff --git a/src/vhdl/python/libghdl/thin/vhdl/sem.py b/src/vhdl/python/libghdl/thin/vhdl/sem.py new file mode 100644 index 000000000..df82435da --- /dev/null +++ b/src/vhdl/python/libghdl/thin/vhdl/sem.py @@ -0,0 +1,3 @@ +from libghdl import libghdl + +Semantic = libghdl.vhdl__sem__semantic -- cgit v1.2.3