aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-07-11 08:10:37 +0200
committerTristan Gingold <tgingold@free.fr>2019-07-11 19:17:01 +0200
commit02e5d6075c095b8267dd0f4c08abd28d56dbbfa7 (patch)
treebc155f14dc57d423de8f073c27455ad5fc646c7a
parentf5ae29aeeb5deaede9d6acbf9ff7af34a42b8d3e (diff)
downloadghdl-02e5d6075c095b8267dd0f4c08abd28d56dbbfa7.tar.gz
ghdl-02e5d6075c095b8267dd0f4c08abd28d56dbbfa7.tar.bz2
ghdl-02e5d6075c095b8267dd0f4c08abd28d56dbbfa7.zip
vhdl-nodes: add comments
-rw-r--r--src/vhdl/vhdl-nodes.ads16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-nodes.ads b/src/vhdl/vhdl-nodes.ads
index fa376c795..5a71204b7 100644
--- a/src/vhdl/vhdl-nodes.ads
+++ b/src/vhdl/vhdl-nodes.ads
@@ -600,6 +600,22 @@ package Vhdl.Nodes is
-- Iir_Kind_Block_Configuration (Short)
--
+ -- LRM08 3.4.2 Block configuration
+ -- block_configuration ::=
+ -- FOR block_specification
+ -- { use_clause }
+ -- { configuration_item }
+ -- END FOR;
+ --
+ -- configuration_item ::=
+ -- block_configuration
+ -- | component_configuration
+ --
+ -- block_specification ::=
+ -- /architecture_/name
+ -- | /block_statement_/label
+ -- | /generate_statement_/label [ ( generate_specification ) ]
+ --
-- Get/Set_Parent (Field0)
--
-- Only use_clause are allowed here.