diff options
| author | Tristan Gingold <tgingold@free.fr> | 2023-01-27 08:14:38 +0100 | 
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2023-01-27 08:14:38 +0100 | 
| commit | c81a49d8dfec4e648a7bbbcf2ee6cccca6bf95e1 (patch) | |
| tree | f7d39ba8b86fc52408a938887d2a89edf57a8359 /src/vhdl | |
| parent | 2a1fe0e8ab996a9aa2e2f2b32513e23345b50c2d (diff) | |
| download | ghdl-c81a49d8dfec4e648a7bbbcf2ee6cccca6bf95e1.tar.gz ghdl-c81a49d8dfec4e648a7bbbcf2ee6cccca6bf95e1.tar.bz2 ghdl-c81a49d8dfec4e648a7bbbcf2ee6cccca6bf95e1.zip | |
trans: add comments
Diffstat (limited to 'src/vhdl')
| -rw-r--r-- | src/vhdl/translate/trans.ads | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/vhdl/translate/trans.ads b/src/vhdl/translate/trans.ads index 6178d46a4..3f385abe6 100644 --- a/src/vhdl/translate/trans.ads +++ b/src/vhdl/translate/trans.ads @@ -1855,12 +1855,13 @@ package Trans is              Object_Rti      : O_Dnode := O_Dnode_Null;           when Kind_Signal => -            --  The current value of the signal. +            --  The current value of the signal, for signal declarations.              --  Also the initial value of collapsed ports.              Signal_Val      : Var_Type := Null_Var;              --  Pointer to the value, for ports.              Signal_Valp     : Var_Type := Null_Var;              --  A pointer to the signal (contains meta data). +            --  Always present.              Signal_Sig      : Var_Type;              --  Direct driver for signal (if any).              Signal_Driver   : Var_Type := Null_Var; | 
