rsp_nomem.ss
777 Bytes
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
/* setup the search path for includes */
search_path = search_path + "../../inc" + "../../su/src" + "../../vu/src"
/* read the compiled netlists */
read -f verilog ../src/rsp_nomem.v
/* read the verilog sources */
read -f verilog ../../ls/src/ls.v
read -f verilog ../../su/src/su.v
read -f verilog ../../sb/src/rspbusses.v
read -f verilog ../../io/src/io_cmd_dma.v
read -f verilog ../../io/src/io_mem_dma.v
read -f verilog ../../vu/src/vu.v
current_design = rsp
link
sub_modules = {su, rspbusses, vu, ls, io_cmd_dma, io_mem_dma}
set_dont_touch sub_modules
ungroup -all -flatten
current_design = rsp
link
check_design > rsp_partition.lint
report_reference
change_names -rules compass_rules -hierarchy
current_design = rsp
write -f edif -o rsp_nomem.edf
quit