aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/vhdl/canon.py
blob: 7893cf3ffbdd161153b8daeb84c399addb2b158b (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
# )