diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-07-16 08:28:51 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-07-16 08:28:51 +0200 |
commit | df6283274a67f9d3810b8ff6a91c6a4885c5797f (patch) | |
tree | 0e7cf8484d3c2c6e5298559b5c9506bfebcd9769 /pyGHDL | |
parent | 34c4e6f26fd9b628f85b1b892ab8522f5bd58928 (diff) | |
download | ghdl-df6283274a67f9d3810b8ff6a91c6a4885c5797f.tar.gz ghdl-df6283274a67f9d3810b8ff6a91c6a4885c5797f.tar.bz2 ghdl-df6283274a67f9d3810b8ff6a91c6a4885c5797f.zip |
vhdl: add Iir_Kinds_AMS_Signal_Attribute
Diffstat (limited to 'pyGHDL')
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes.py | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes.py b/pyGHDL/libghdl/vhdl/nodes.py index 0caa521f6..79b0fd803 100644 --- a/pyGHDL/libghdl/vhdl/nodes.py +++ b/pyGHDL/libghdl/vhdl/nodes.py @@ -339,8 +339,8 @@ class Iir_Kind(IntEnum): Ztf_Attribute = 292 Dot_Attribute = 293 Integ_Attribute = 294 - Above_Attribute = 295 - Quantity_Delayed_Attribute = 296 + Quantity_Delayed_Attribute = 295 + Above_Attribute = 296 Delayed_Attribute = 297 Stable_Attribute = 298 Quiet_Attribute = 299 @@ -818,8 +818,8 @@ class Iir_Kinds: Iir_Kind.Ztf_Attribute, Iir_Kind.Dot_Attribute, Iir_Kind.Integ_Attribute, - Iir_Kind.Above_Attribute, Iir_Kind.Quantity_Delayed_Attribute, + Iir_Kind.Above_Attribute, Iir_Kind.Delayed_Attribute, Iir_Kind.Stable_Attribute, Iir_Kind.Quiet_Attribute, @@ -872,8 +872,8 @@ class Iir_Kinds: Iir_Kind.Ztf_Attribute, Iir_Kind.Dot_Attribute, Iir_Kind.Integ_Attribute, - Iir_Kind.Above_Attribute, Iir_Kind.Quantity_Delayed_Attribute, + Iir_Kind.Above_Attribute, Iir_Kind.Delayed_Attribute, Iir_Kind.Stable_Attribute, Iir_Kind.Quiet_Attribute, @@ -946,6 +946,14 @@ class Iir_Kinds: Iir_Kind.Transaction_Attribute, ] + AMS_Signal_Attribute = [ + Iir_Kind.Above_Attribute, + Iir_Kind.Delayed_Attribute, + Iir_Kind.Stable_Attribute, + Iir_Kind.Quiet_Attribute, + Iir_Kind.Transaction_Attribute, + ] + Signal_Value_Attribute = [ Iir_Kind.Event_Attribute, Iir_Kind.Active_Attribute, |