diff options
author | Tristan Gingold | 2013-12-18 05:27:55 +0100 |
---|---|---|
committer | Tristan Gingold | 2013-12-18 05:27:55 +0100 |
commit | 5fde24d46fae799e6c0723850097a8fccd64d747 (patch) | |
tree | 46311f29a821dd48071a499d872e2f81a1c63df8 /translate/ghdldrv/ghdlrun.adb | |
parent | 40e03fd99305ab3f85dac3b9951e7a9ebf4efbff (diff) | |
download | ghdl-5fde24d46fae799e6c0723850097a8fccd64d747.tar.gz ghdl-5fde24d46fae799e6c0723850097a8fccd64d747.tar.bz2 ghdl-5fde24d46fae799e6c0723850097a8fccd64d747.zip |
Add references to added 'value routines in ghdlrun.
Diffstat (limited to 'translate/ghdldrv/ghdlrun.adb')
-rw-r--r-- | translate/ghdldrv/ghdlrun.adb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/translate/ghdldrv/ghdlrun.adb b/translate/ghdldrv/ghdlrun.adb index 34b5edc..25bd385 100644 --- a/translate/ghdldrv/ghdlrun.adb +++ b/translate/ghdldrv/ghdlrun.adb @@ -517,8 +517,16 @@ package body Ghdlrun is Def (Trans_Decls.Ghdl_Image_P32, Grt.Images.Ghdl_Image_P32'Address); + Def (Trans_Decls.Ghdl_Value_B2, + Grt.Values.Ghdl_Value_B2'Address); Def (Trans_Decls.Ghdl_Value_I32, Grt.Values.Ghdl_Value_I32'Address); + Def (Trans_Decls.Ghdl_Value_F64, + Grt.Values.Ghdl_Value_F64'Address); + Def (Trans_Decls.Ghdl_Value_P32, + Grt.Values.Ghdl_Value_P32'Address); + Def (Trans_Decls.Ghdl_Value_P64, + Grt.Values.Ghdl_Value_P64'Address); Def (Trans_Decls.Ghdl_Get_Path_Name, Grt.Names.Ghdl_Get_Path_Name'Address); |