diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-12-18 06:33:46 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-12-18 06:42:13 +0100 |
commit | e2dc620a15017de7e5731a9a48f0023f9d1df3d5 (patch) | |
tree | 31b5e3567cca2e6748430aace05911d674e94ddd /src/vhdl/python/libghdl | |
parent | c0ab680648a1d803d9e1d7f5e51988a70e5be41a (diff) | |
download | ghdl-e2dc620a15017de7e5731a9a48f0023f9d1df3d5.tar.gz ghdl-e2dc620a15017de7e5731a9a48f0023f9d1df3d5.tar.bz2 ghdl-e2dc620a15017de7e5731a9a48f0023f9d1df3d5.zip |
thin.py: add a namespace for Libraries, export Find_Entity_For_Component.
Diffstat (limited to 'src/vhdl/python/libghdl')
-rw-r--r-- | src/vhdl/python/libghdl/thin.py | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/src/vhdl/python/libghdl/thin.py b/src/vhdl/python/libghdl/thin.py index f03d2488d..d55bb4723 100644 --- a/src/vhdl/python/libghdl/thin.py +++ b/src/vhdl/python/libghdl/thin.py @@ -118,7 +118,8 @@ class Files_Map: Reserve_Source_File = libghdl.files_map__reserve_source_file - Source_Files_Last = libghdl.files_map__source_files__last + Get_Last_Source_File_Entry = libghdl.files_map__get_last_source_file_entry + class Files_Map_Editor: Set_Gap = libghdl.files_map__editor__set_gap @@ -215,6 +216,7 @@ class Canon: Extract_Sequential_Statement_Chain_Sensitivity = \ libghdl.canon__canon_extract_sequential_statement_chain_sensitivity + class Sem_Lib: Load_File = libghdl.sem_lib__load_file @@ -228,21 +230,24 @@ Standard_Package = c_int32.in_dll(libghdl, "std_package__standard_package") Character_Type_Definition = c_int32.in_dll( libghdl, "std_package__character_type_definition") -# libraries +class Libraries: + Get_Libraries_Chain = libghdl.libraries__get_libraries_chain -Get_Libraries_Chain = libghdl.libraries__get_libraries_chain + Add_Design_Unit_Into_Library = \ + libghdl.libraries__add_design_unit_into_library -Add_Design_Unit_Into_Library = libghdl.libraries__add_design_unit_into_library + Finish_Compilation = libghdl.sem_lib__finish_compilation -Finish_Compilation = libghdl.sem_lib__finish_compilation + # Use .value + Library_Location = c_int32.in_dll(libghdl, "libraries__library_location") -# Use .value -Library_Location = c_int32.in_dll(libghdl, "libraries__library_location") + # Use .value + Work_Library = c_int32.in_dll(libghdl, "libraries__work_library") -# Use .value -Work_Library = c_int32.in_dll(libghdl, "libraries__work_library") + Purge_Design_File = libghdl.libraries__purge_design_file + + Find_Entity_For_Component = libghdl.libraries__find_entity_for_component -Purge_Design_File = libghdl.libraries__purge_design_file # Disp_Tree |