blob: b090561283c1943633c80f51b06e8a86b1174be7 (
plain)
1
2
3
4
5
6
7
|
from pyGHDL.libghdl import libghdl
from ctypes import c_bool
Parse_Design_File = libghdl.vhdl__parse__parse_design_file
Flag_Parse_Parenthesis = c_bool.in_dll(libghdl, "vhdl__parse__flag_parse_parenthesis")
|