diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2020-08-31 00:44:26 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2020-08-31 08:08:31 +0200 |
commit | 498ee9b65347604fd33782907cb9ef8fa92443f4 (patch) | |
tree | bcc854b29c3f1d3523406a5e7289617c4494702b /python | |
parent | 1c00b4812edb439f47938d074b9c4f73b2cc0ad3 (diff) | |
download | ghdl-498ee9b65347604fd33782907cb9ef8fa92443f4.tar.gz ghdl-498ee9b65347604fd33782907cb9ef8fa92443f4.tar.bz2 ghdl-498ee9b65347604fd33782907cb9ef8fa92443f4.zip |
py undefined symbols
Diffstat (limited to 'python')
-rw-r--r-- | python/libghdl/thin/vhdl/canon.py | 6 | ||||
-rw-r--r-- | python/libghdl/thin/vhdl/ieee.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/python/libghdl/thin/vhdl/canon.py b/python/libghdl/thin/vhdl/canon.py index 8cd5637d3..7893cf3ff 100644 --- a/python/libghdl/thin/vhdl/canon.py +++ b/python/libghdl/thin/vhdl/canon.py @@ -9,6 +9,6 @@ Flag_Configurations = c_bool.in_dll(libghdl, "vhdl__canon__canon_flag_configurat 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 -) +# Extract_Sequential_Statement_Chain_Sensitivity = ( +# libghdl.vhdl__canon__canon_extract_sequential_statement_chain_sensitivity +# ) diff --git a/python/libghdl/thin/vhdl/ieee.py b/python/libghdl/thin/vhdl/ieee.py index 67eb2664b..35db1a631 100644 --- a/python/libghdl/thin/vhdl/ieee.py +++ b/python/libghdl/thin/vhdl/ieee.py @@ -14,7 +14,7 @@ Std_Logic_Vector_Type = c_int.in_dll( ) # Get value -Rising_Edge = c_int.in_dll(libghdl, "vhdl__ieee__std_logic_1164__rising_edge") +# Rising_Edge = c_int.in_dll(libghdl, "vhdl__ieee__std_logic_1164__rising_edge") # Get value -Falling_Edge = c_int.in_dll(libghdl, "vhdl__ieee__std_logic_1164__falling_edge") +# Falling_Edge = c_int.in_dll(libghdl, "vhdl__ieee__std_logic_1164__falling_edge") |