-- Global flags.-- Copyright (C) 2002, 2003, 2004, 2005, 2008 Tristan Gingold---- This program is free software: you can redistribute it and/or modify-- it under the terms of the GNU General Public License as published by-- the Free Software Foundation, either version 2 of the License, or-- (at your option) any later version.---- This program is distributed in the hope that it will be useful,-- but WITHOUT ANY WARRANTY; without even the implied warranty of-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the-- GNU General Public License for more details.---- You should have received a copy of the GNU General Public License-- along with this program. If not, see <gnu.org/licenses>.packagebodyFlagsisprocedureCreate_Flag_StringisbegincaseVhdl_StdiswhenVhdl_87=>Flag_String(1..2):="87";whenVhdl_93|Vhdl_00|Vhdl_02=>Flag_String(1..2):="93";whenVhdl_08=>Flag_String(1..2):="08";whenVhdl_19=>Flag_String(1..2):="19";endcase;ifFlag_Integer_64thenFlag_String(3):='I';elseFlag_String(3):='i';endif;ifFlag_Time_64thenFlag_String(4):='T';elseFlag_String(4):='t';endif;-- Time_Resolution is always fs, maybe overwritten later.Flag_String(5):='-';endCreate_Flag_String;endFlags;