div_pnt_slp.ss
2.58 KB
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
/* Echo start time */
sh "date"
/*****************************************************************************/
/* custom variables */
/*****************************************************************************/
module = "div_pnt_slp"
/*****************************************************************************/
/* set the path and read */
/*****************************************************************************/
search_path = search_path \
+ "../src" \
+ "../../inc" \
+ "../../../lib/verilog/user" \
+ "../../syn"
read -f verilog module + ".v"
/*****************************************************************************/
/* default environment */
/*****************************************************************************/
set_operating_conditions NOM
set_wire_load 256000 -mode top
/*****************************************************************************/
/* constraints */
/*****************************************************************************/
set_max_area 0
set_max_transition 1.5 current_design
/*****************************************************************************/
/* check */
/*****************************************************************************/
link
check_design > module + ".lint"
/*****************************************************************************/
/* compile */
/*****************************************************************************/
/* area constraint only */
set_flatten true -effort high -minimize multiple_output
set_structure true
compile -map_effort high
/* fix timing */
set_max_delay 8.0 all_outputs()
set_load 0.1 all_outputs()
compile -map_effort high -incremental
/*****************************************************************************/
/* generate reports */
/*****************************************************************************/
include "report.dc"
/*****************************************************************************/
/* write */
/*****************************************************************************/
write -format edif -hierarchy -o module + ".edf" module
/* Echo end time */
sh "date"
quit