do_tst_sim
2.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!/bin/csh -f
#
# Shell script for generating tabular trace file
#
# Usage: do_tst_qsim <test>
vlsishell << EOF
set echo on
####################################
# invoke qsim and load netlist
####################################
qsim
mode compassqsim
load [nls]tst
####################################
# setup environment
####################################
radix 16
#options bidirConflict
options failTestOnZ
#trace (static, tabular)
#options tabularReportOnChange
#trace (dynamic, tabular)
trace (dynamic)
####################################
# display current environment
####################################
preprocess
simparms
options
trace
modeloptions
vector ad16_data_in[14:0]
vector tst_c_ctl_i[5:0]
vector c_ctl_i[5:0]
####################################
# assign static inputs
####################################
l clock
l pad_reset_l
l test
input 'h0 ad16_data_in
l ad16_enable_l
l ad16_read_l
l ad16_write_l
l c_ctl_en
input 'h0 c_ctl_i
l c_ctl_ld
l bist_flag
####################################
# list signals to be dumped in trace file
####################################
#watch tst_ad16_write_l
#watch pad_reset_l
#watch test
#watch st_0
#watch st_1
#watch st_mux
#watch ad16_data_in
#watch ad16_enable_l
#watch ad16_read_l
#watch ad16_write_l
#watch c_ctl_en
#watch c_ctl_i
#watch c_ctl_ld
#watch bist_flag
#watch tst_ad16_enable_l
#watch tst_ad16_read_l
#watch tst_by_pass
#watch tst_bist_mode
#watch tst_iost_mode
#watch tst_rac_reset
#watch tst_ext_be
#watch tst_c_ctl_en
#watch tst_c_ctl_i
#watch tst_c_ctl_ld
#watch tst_synclk_set
#watch tst_pwr_up
#watch tst_idd_test
#watch tst_reset_l_9
#watch tst_reset_l_8
#watch tst_reset_l_7
#watch tst_reset_l_6
#watch tst_reset_l_5
#watch tst_reset_l_4
#watch tst_reset_l_3
#watch tst_reset_l_2
#watch tst_reset_l_1
#watch tst_reset_l_0
####################################
# open trc file
####################################
output (only) [trc]$1
####################################
# load sim file
####################################
load [sim]$1
####################################
# close trc file
####################################
output .
####################################
# display % of nodes toggled
####################################
toggles (totals)
q
q
EOF