-- ************************************************************** -- ************************************************************** -- -- EIA-567 standard package -- -- ************************************************************** -- ************************************************************** -- -- Design Unit Name : EIA567PV -- -- Source : Standard -- -- Functionality : All type definitions required by section 4.6.3 -- -- Version : 1.0 -- -- History : Original -- -- Annotations : None -- -- Analysis Dependencies : None -- -- Limitations : None -- -- Fidelity : Complete -- -- Discrepancies : None -- -- Supplementary Information : None -- -- Development Platform : IBM compatible PC -- -- VHDL Software Version : VSystem/Windows ver. 3.3a -- -- ************************************************************** PACKAGE eia567pv IS -- ------------------------------------------------------------ -- Types eia_string and pin_record are used in the component -- physical view in the type pin_to_signal_type and in the -- constant pin_to_signal to hold signal name and pin_id -- correllations. -- ------------------------------------------------------------ SUBTYPE eia_string IS STRING (1 TO 28); TYPE pin_record IS RECORD pin_id, signal_name : eia_string; END RECORD; END eia567pv;