aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/python/libghdl/thin/flags.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/python/libghdl/thin/flags.py')
-rw-r--r--src/vhdl/python/libghdl/thin/flags.py9
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")