diff options
Diffstat (limited to 'src/vhdl/std_package.ads')
-rw-r--r-- | src/vhdl/std_package.ads | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vhdl/std_package.ads b/src/vhdl/std_package.ads index 1c714b95c..f8830ae2e 100644 --- a/src/vhdl/std_package.ads +++ b/src/vhdl/std_package.ads @@ -15,6 +15,8 @@ -- along with GHDL; see the file COPYING. If not, write to the Free -- Software Foundation, 59 Temple Place - Suite 330, Boston, MA -- 02111-1307, USA. + +with Types; use Types; with Iirs; use Iirs; package Std_Package is @@ -24,6 +26,10 @@ package Std_Package is -- Its kind is Iir_Kind_Error. Error_Mark : constant Iir; + -- Virtual file and location for the standard package. + Std_Source_File : Source_File_Entry := No_Source_File_Entry; + Std_Location: Location_Type := Location_Nil; + -- Some well know values declared in the STANDARD package. -- These values (except time_base) *must* not be modified, and are set by -- create_std_standard_package. |