diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-03-25 08:03:51 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-03-25 08:03:51 +0100 |
commit | d82753539cb4307b57710ab499aae0ffce872ca0 (patch) | |
tree | d42d59830a37de93940d0b61d67a9fc4bd216dfd /src | |
parent | 50ad0f98f084b960af0af48740590652c9715baa (diff) | |
download | ghdl-d82753539cb4307b57710ab499aae0ffce872ca0.tar.gz ghdl-d82753539cb4307b57710ab499aae0ffce872ca0.tar.bz2 ghdl-d82753539cb4307b57710ab499aae0ffce872ca0.zip |
grt: add comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/grt/grt-rtis.ads | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/grt/grt-rtis.ads b/src/grt/grt-rtis.ads index 97687ba33..703649c47 100644 --- a/src/grt/grt-rtis.ads +++ b/src/grt/grt-rtis.ads @@ -181,8 +181,15 @@ package Grt.Rtis is type Ghdl_Rtin_Object is record Common : Ghdl_Rti_Common; Name : Ghdl_C_String; + + -- Address of the object. For a signal, this is the address of the + -- signal, the value is just after the signal. Loc : Ghdl_Rti_Loc; + + -- Type of the object. Obj_Type : Ghdl_Rti_Access; + + -- Line and column of the declaration. Linecol : Ghdl_Index_Type; end record; type Ghdl_Rtin_Object_Acc is access Ghdl_Rtin_Object; |