diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-04 15:40:33 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-04 15:40:33 +0100 |
commit | c7f7cdffe62bf0f9939c8f4b86ccb0d4ba870599 (patch) | |
tree | 7680e9d51ae2b264f2417cfe5d7cea95e9315a55 /pyGHDL/libghdl | |
parent | ad571771adbb27b43a9470f96dcb42db8a51c79a (diff) | |
download | ghdl-c7f7cdffe62bf0f9939c8f4b86ccb0d4ba870599.tar.gz ghdl-c7f7cdffe62bf0f9939c8f4b86ccb0d4ba870599.tar.bz2 ghdl-c7f7cdffe62bf0f9939c8f4b86ccb0d4ba870599.zip |
vhdl-sem_inst: handle suspend_state
Diffstat (limited to 'pyGHDL/libghdl')
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes.py | 26 | ||||
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes_meta.py | 14 |
2 files changed, 40 insertions, 0 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes.py b/pyGHDL/libghdl/vhdl/nodes.py index d5a8d8e80..df1455c82 100644 --- a/pyGHDL/libghdl/vhdl/nodes.py +++ b/pyGHDL/libghdl/vhdl/nodes.py @@ -6992,3 +6992,29 @@ def Get_Suspend_State_Chain(obj: Iir) -> Iir: @BindToLibGHDL("vhdl__nodes__set_suspend_state_chain") def Set_Suspend_State_Chain(obj: Iir, value: Iir) -> None: """""" + + +@export +@BindToLibGHDL("vhdl__nodes__get_suspend_state_last") +def Get_Suspend_State_Last(obj: Iir) -> Iir: + """""" + return 0 + + +@export +@BindToLibGHDL("vhdl__nodes__set_suspend_state_last") +def Set_Suspend_State_Last(obj: Iir, value: Iir) -> None: + """""" + + +@export +@BindToLibGHDL("vhdl__nodes__get_suspend_state_decl") +def Get_Suspend_State_Decl(obj: Iir) -> Iir: + """""" + return 0 + + +@export +@BindToLibGHDL("vhdl__nodes__set_suspend_state_decl") +def Set_Suspend_State_Decl(obj: Iir, value: Iir) -> None: + """""" diff --git a/pyGHDL/libghdl/vhdl/nodes_meta.py b/pyGHDL/libghdl/vhdl/nodes_meta.py index f2b4ec7e2..ef851f816 100644 --- a/pyGHDL/libghdl/vhdl/nodes_meta.py +++ b/pyGHDL/libghdl/vhdl/nodes_meta.py @@ -502,6 +502,8 @@ class fields(IntEnum): Foreign_Node = 382 Suspend_State_Index = 383 Suspend_State_Chain = 384 + Suspend_State_Last = 385 + Suspend_State_Decl = 386 def Get_Boolean(node, field): @@ -2944,3 +2946,15 @@ def Has_Suspend_State_Index(kind: IirKind) -> bool: @BindToLibGHDL("vhdl__nodes_meta__has_suspend_state_chain") def Has_Suspend_State_Chain(kind: IirKind) -> bool: """""" + + +@export +@BindToLibGHDL("vhdl__nodes_meta__has_suspend_state_last") +def Has_Suspend_State_Last(kind: IirKind) -> bool: + """""" + + +@export +@BindToLibGHDL("vhdl__nodes_meta__has_suspend_state_decl") +def Has_Suspend_State_Decl(kind: IirKind) -> bool: + """""" |