aboutsummaryrefslogtreecommitdiffstats
path: root/tokens.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2013-12-17 06:25:53 +0100
committerTristan Gingold <tgingold@free.fr>2013-12-17 06:25:53 +0100
commit48448a12ef628218db298d8b7c6879e28cdd019a (patch)
tree7e612d41dc01c435cf32e3cee029b429c9362bb9 /tokens.ads
parent04ad1cd54d99fc3ac3d82c69ee5f7c2db7e2275a (diff)
downloadghdl-48448a12ef628218db298d8b7c6879e28cdd019a.tar.gz
ghdl-48448a12ef628218db298d8b7c6879e28cdd019a.tar.bz2
ghdl-48448a12ef628218db298d8b7c6879e28cdd019a.zip
Sync tree: add parsing of AMS-VHDL, add Darwin syntax in asm files.
Diffstat (limited to 'tokens.ads')
-rw-r--r--tokens.ads17
1 files changed, 17 insertions, 0 deletions
diff --git a/tokens.ads b/tokens.ads
index c3fd68345..c331c099e 100644
--- a/tokens.ads
+++ b/tokens.ads
@@ -37,6 +37,8 @@ package Tokens is
Tok_Box, -- <>
Tok_Dot, -- .
+ Tok_Equal_Equal, -- == (AMS Vhdl)
+
Tok_Eof, -- End of file.
Tok_Newline,
Tok_Comment,
@@ -208,6 +210,21 @@ package Tokens is
-- Added by Vhdl 2000:
Tok_Protected,
+ -- AMS reserved words
+ Tok_Across,
+ Tok_Break,
+ Tok_Limit,
+ Tok_Nature,
+ Tok_Noise,
+ Tok_Procedural,
+ Tok_Quantity,
+ Tok_Reference,
+ Tok_Spectrum,
+ Tok_Subnature,
+ Tok_Terminal,
+ Tok_Through,
+ Tok_Tolerance,
+
-- PSL words
Tok_Psl_Default,
Tok_Psl_Clock,