1 |
8 |
eejlny |
-------------------------------------------------------------------------------
|
2 |
|
|
--
|
3 |
|
|
-- Copyright (c) 1994 by AT&T. All rights reserved.
|
4 |
|
|
--
|
5 |
|
|
-- This source file may be used and distributed without restriction
|
6 |
|
|
-- provided that this copyright statement is not removed from the file
|
7 |
|
|
-- and that any derivative work contains this copyright notice.
|
8 |
|
|
--
|
9 |
|
|
-- Package name: ATTRIBUTES
|
10 |
|
|
-- File name : attributes.vhdl
|
11 |
|
|
--
|
12 |
|
|
-- Updates:
|
13 |
|
|
|
14 |
|
|
--D sccsid @(#)attributes.vhdl 1.5 daisy(C) 2/13/95 /files1/SCCS.model/bvhdl/vhdl_packages/dzx/src/s.attributes.vhdl
|
15 |
|
|
-------------------------------------------------------------------------------
|
16 |
|
|
|
17 |
|
|
package ATTRIBUTES is
|
18 |
|
|
-- Clock attributes:
|
19 |
|
|
-- No need for a attribute indicating what is a clock, since any
|
20 |
|
|
-- signal can be a clock.
|
21 |
|
|
attribute INITIAL_VALUE: CHARACTER; -- only 'L' or 'H'.
|
22 |
|
|
attribute DELAY_TIME: REAL;
|
23 |
|
|
attribute PULSE_WIDTH: REAL;
|
24 |
|
|
attribute TIME_PERIOD: REAL;
|
25 |
|
|
attribute MAX_SKEW: REAL;
|
26 |
|
|
attribute MAX_SKEW_RISING: REAL;
|
27 |
|
|
attribute MAX_SKEW_FALLING: REAL;
|
28 |
|
|
attribute MIN_SKEW: REAL;
|
29 |
|
|
attribute MIN_SKEW_RISING: REAL;
|
30 |
|
|
attribute MIN_SKEW_FALLING: REAL;
|
31 |
|
|
|
32 |
|
|
-- Input port attributes:
|
33 |
|
|
attribute ARR_TIME: REAL;
|
34 |
|
|
attribute ARR_TIME_RISING: REAL;
|
35 |
|
|
attribute ARR_TIME_FALLING: REAL;
|
36 |
|
|
attribute ARR_TIME_CLK: STRING;
|
37 |
|
|
attribute ARR_TIME_CLK_RISING: STRING;
|
38 |
|
|
attribute ARR_TIME_CLK_FALLING: STRING;
|
39 |
|
|
attribute DRIVE_STR: REAL;
|
40 |
|
|
attribute DRIVE_STR_RISING: REAL;
|
41 |
|
|
attribute DRIVE_STR_FALLING: REAL;
|
42 |
|
|
attribute SLOPE: REAL;
|
43 |
|
|
attribute SLOPE_RISING: REAL;
|
44 |
|
|
attribute SLOPE_FALLING: REAL;
|
45 |
|
|
|
46 |
|
|
-- Output port attributes:
|
47 |
|
|
attribute CAP_LOAD: REAL;
|
48 |
|
|
attribute MAX_REQD_TIME: REAL;
|
49 |
|
|
attribute MIN_REQD_TIME: REAL;
|
50 |
|
|
attribute MAX_REQD_TIME_RISING: REAL;
|
51 |
|
|
attribute MIN_REQD_TIME_RISING: REAL;
|
52 |
|
|
attribute MAX_REQD_TIME_FALLING: REAL;
|
53 |
|
|
attribute MIN_REQD_TIME_FALLING: REAL;
|
54 |
|
|
attribute MAX_REQD_TIME_CLK: STRING;
|
55 |
|
|
attribute MIN_REQD_TIME_CLK: STRING;
|
56 |
|
|
|
57 |
|
|
attribute MAX_REQD_TIME_CLK_RISING: STRING;
|
58 |
|
|
attribute MIN_REQD_TIME_CLK_RISING: STRING;
|
59 |
|
|
attribute MAX_REQD_TIME_CLK_FALLING: STRING;
|
60 |
|
|
attribute MIN_REQD_TIME_CLK_FALLING: STRING;
|
61 |
|
|
|
62 |
|
|
-- Entity attributes:
|
63 |
|
|
attribute MAX_AREA: REAL;
|
64 |
|
|
|
65 |
|
|
-- Merge attribute to collapse hierarchy:
|
66 |
|
|
attribute MERGE: BOOLEAN;
|
67 |
|
|
|
68 |
|
|
-- External name attribute:
|
69 |
|
|
attribute EXTNAME: STRING;
|
70 |
|
|
|
71 |
|
|
-- Built_in operators attribute:
|
72 |
|
|
attribute BUILT_IN_OPERATORS: BOOLEAN;
|
73 |
|
|
|
74 |
|
|
-- Attributes and type for specifying RTL binding and structure info:
|
75 |
|
|
type RTL_LABEL is range 0 to 0;
|
76 |
|
|
attribute RTL_BINDING: STRING;
|
77 |
|
|
attribute RTL_STRUCTURE: STRING;
|
78 |
|
|
end ATTRIBUTES;
|