-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencounter.pt~
78 lines (73 loc) · 2.51 KB
/
encounter.pt~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#***************************************************
# Timing constraint file in PT format
#
# - Note: This is all case-sensitive
#***************************************************
#***************************************************
# Clock Constraints
#***************************************************
create_clock -period 1.0000000 -waveform { 0.0000000 50.0000000}\
[get_ports {clk}]
#***************************************************
# Input Pin Constraints
#***************************************************
set_input_delay -clock clk 1.0000 \
[get_ports {n_rst}]
set_input_delay -clock clk 1.0000 \
[get_ports {transmit}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_enable}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[7]}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[6]}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[5]}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[4]}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[3]}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[2]}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[1]}]
set_input_delay -clock clk 1.0000 \
[get_ports {write_data[0]}]
#***************************************************
# Output Pin Constraints
#***************************************************
set_output_delay -clock clk 1.0000 \
[get_ports {fifo_full}]
set_output_delay -clock clk 1.0000 \
[get_ports {fifo_empty}]
set_output_delay -clock clk 1.0000 \
[get_ports {d_plus}]
set_output_delay -clock clk 1.0000 \
[get_ports {d_minus}]
#***************************************************
# Pin Driving Cells (Needed only for Inputs)
#***************************************************
set_driving_cell -lib_cell INVX8\
[get_ports {clk}]
set_driving_cell -lib_cell INVX8\
[get_ports {n_rst}]
set_driving_cell -lib_cell INVX8\
[get_ports {transmit}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_enable}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[7]}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[6]}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[5]}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[4]}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[3]}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[2]}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[1]}]
set_driving_cell -lib_cell INVX8\
[get_ports {write_data[0]}]