aboutsummaryrefslogtreecommitdiffstats
path: root/python/libghdl/thin/vhdl/canon.py
blob: 8cd5637d3ea47b6c07a9ca52c234a222be0dbecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from libghdl import libghdl
from ctypes import c_bool

Flag_Concurrent_Stmts = c_bool.in_dll(
    libghdl, "vhdl__canon__canon_flag_concurrent_stmts"
)

Flag_Configurations = c_bool.in_dll(libghdl, "vhdl__canon__canon_flag_configurations")

Flag_Associations = c_bool.in_dll(libghdl, "vhdl__canon__canon_flag_associations")

Extract_Sequential_Statement_Chain_Sensitivity = (
    libghdl.vhdl__canon__canon_extract_sequential_statement_chain_sensitivity
)