diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-14 18:26:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-14 18:26:25 +0200 |
commit | 5ec4adc52ffacb8407d17dc728e45f7ac8f66261 (patch) | |
tree | 30974cbd6cea97562b0253ba4b605ce1eaae2c30 /src/vhdl/python/libghdl/thin/flags.py | |
parent | 43d0db7f5a91f7c936faedc23afafeca27c6058d (diff) | |
download | ghdl-5ec4adc52ffacb8407d17dc728e45f7ac8f66261.tar.gz ghdl-5ec4adc52ffacb8407d17dc728e45f7ac8f66261.tar.bz2 ghdl-5ec4adc52ffacb8407d17dc728e45f7ac8f66261.zip |
python/libghdl: refactoring
Diffstat (limited to 'src/vhdl/python/libghdl/thin/flags.py')
-rw-r--r-- | src/vhdl/python/libghdl/thin/flags.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vhdl/python/libghdl/thin/flags.py b/src/vhdl/python/libghdl/thin/flags.py new file mode 100644 index 000000000..b50480442 --- /dev/null +++ b/src/vhdl/python/libghdl/thin/flags.py @@ -0,0 +1,9 @@ +from libghdl import libghdl +from ctypes import c_bool + +Flag_Elocations = c_bool.in_dll(libghdl, "flags__flag_elocations") + +Verbose = c_bool.in_dll(libghdl, "flags__verbose") + +Flag_Elaborate_With_Outdated = c_bool.in_dll( + libghdl, "flags__flag_elaborate_with_outdated") |