blob: 97eea62e19a3195c5885198d515200e2035d3104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from pyGHDL.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
# )
|