ststwl.ss
1.28 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
module = ststwl
search_path = search_path + "../src" + "../../inc" + \
"../../../lib/verilog/user" + "../../syn"
/* setup aliases */
alias set_default_operating_conditions "set_operating_conditions NOM -library rcp.db; \
set_wire_load 256000 -mode top;"
alias set_default_timing_constraints "create_clock gclk -period 15.0 -waveform {0 8.0}; \
set_input_delay 2.0 -clock gclk all_inputs(); \
set_output_delay 12.0 -clock gclk all_outputs(); \
set_max_transition 1.0 current_design; \
set_load 0.06 all_outputs();"
/* read the verilog sources */
read -f verilog ../src/adder27b.v
read -f verilog ../src/ststwl.v
current_design = ststwl
link
check_design > ststwl.lint
set_default_operating_conditions
set_default_timing_constraints
set_driving_cell -cell dfntnb {att_data_in[*]}
set_driving_cell -cell dfntnb {dx[*]}
set_driving_cell -cell dfntnb {dy[*]}
set_driving_cell -cell dfntnb {left_major}
set_driving_cell -cell dfntnb {load, ncyc}
set_load 0.30 all_outputs()
set_output_delay 13.0 -clock gclk all_outputs()
set_output_delay 11.5 -clock gclk {att_data_out}
compile -map_effort high -ungroup_all
report -reference
report_constraint -all_violators
include "ststwl.tmg"
include "report.dc"
write -f edif -o ststwl.edf -hier ststwl
quit