-- -- -- DISCLAIMER -- -- This code is the sole property of the Institute for Technology -- Development (ITD), Jackson, Mississippi, and is distributed for -- the purpose of providing examples of VHDL models written to -- modeling standards. This code may not be used for commercial -- purposes, and may not be redistributed without permission from -- the Institute for Technology Development. ITD assumes no -- responsibility for errors, omissions, uses made, or decisions -- based on its use. No warranties, expressed or implied, are given. -- -- ------------------------------------------------------------------ -- FILENAME: SIMFLAG.VHD -- Description: User-selectable options file package body SIMFLAG is CONSTANT FLAG_TYPE : flags := GLOBAL; CONSTANT SIM_OPTION : sim_options := FULL_TIM; CONSTANT TIME_MODE : time_modes := TIMING; CONSTANT TIME_OPTION : time_options := TYPICAL; CONSTANT Vcc : voltage := 5.0; --volt CONSTANT Ta : temperature := 25.0; --celsius CONSTANT DERATE_FACTOR : percentage := 100.0; end SIMFLAG;