-- FILE NAME: waves_events_.vhd -- -- 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. -- -- This is a modified IEEE WAVES package. This package was modified -- to handle the logic_mv state/strength value system used in the -- models being tested. -- -- ------------------------------------------------------------------ library WAVES_STANDARD ; use WAVES_STANDARD.Waves_Standard.all ; package Waves_Events is type Logic_Value is ( U, X, D0, D1, Z, L, H, W, S0, S1, DC); function Value_Dictionary ( Value : in Logic_Value) return Event_Value ; end Waves_Events ;