diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-30 03:33:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-30 03:33:25 +0200 |
commit | 612d41653c059b108df02d4ced4fbcfb37333183 (patch) | |
tree | 1abfcd204acb7bc2d130067bbd1176116735cfd6 /python/libghdl/thin/vhdl/tokens.py | |
parent | cb3588fbe3918342e0f84445136d5612566ce70c (diff) | |
download | ghdl-612d41653c059b108df02d4ced4fbcfb37333183.tar.gz ghdl-612d41653c059b108df02d4ced4fbcfb37333183.tar.bz2 ghdl-612d41653c059b108df02d4ced4fbcfb37333183.zip |
vhdl: recognize 1164 condition operator, handle in synth.
Diffstat (limited to 'python/libghdl/thin/vhdl/tokens.py')
-rw-r--r-- | python/libghdl/thin/vhdl/tokens.py | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/python/libghdl/thin/vhdl/tokens.py b/python/libghdl/thin/vhdl/tokens.py index 67bf038e7..db2741d34 100644 --- a/python/libghdl/thin/vhdl/tokens.py +++ b/python/libghdl/thin/vhdl/tokens.py @@ -196,14 +196,20 @@ class Tok: Before_Em = 192 Before_Un = 193 Before_Em_Un = 194 - Until_Em = 195 - Until_Un = 196 - Until_Em_Un = 197 - Always = 198 - Never = 199 - Eventually = 200 - Next_A = 201 - Next_E = 202 + Always = 195 + Never = 196 + Eventually_Em = 197 + Next_Em = 198 + Next_A = 199 + Next_A_Em = 200 + Next_E = 201 + Next_E_Em = 202 Next_Event = 203 - Next_Event_A = 204 - Next_Event_E = 205 + Next_Event_Em = 204 + Next_Event_A = 205 + Next_Event_A_Em = 206 + Next_Event_E = 207 + Next_Event_E_Em = 208 + Until_Em = 209 + Until_Un = 210 + Until_Em_Un = 211 |