do_sim
2.13 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
#!/bin/csh -f
#
# Shell script for generating tabular trace file
#
# Usage: do_sim <test>
#
# 12/2/94 TD
#
if ( $#argv != 1 ) then
echo "Usage: $0 <test>"
exit
endif
vlsishell << EOF
set echo on
####################################
# invoke qsim and load netlist
####################################
qsim
mode compassqsim
load [nls]tf
####################################
# setup environment
####################################
radix 16
options bidirConflict
options failTestOnZ
trace (static, tabular)
#options tabularReportOnChange
#trace (dynamic, tabular)
####################################
# display current environment
####################################
preprocess
simparms
options
trace
modeloptions
####################################
# bus and signal aliases
####################################
vector k0_coeff[8:0]
vector k1_coeff[8:0]
vector k2_coeff[8:0]
vector k3_coeff[8:0]
vector lod_frac[8:0]
vector sfrac_rg[7:0]
vector tfrac_rg[7:0]
vector sfrac_ba[7:0]
vector tfrac_ba[7:0]
vector tm_ra[8:0]
vector tm_ga[8:0]
vector tm_ba[8:0]
vector tm_aa[8:0]
vector tm_rb[8:0]
vector tm_gb[8:0]
vector tm_bb[8:0]
vector tm_ab[8:0]
vector tm_rc[8:0]
vector tm_gc[8:0]
vector tm_bc[8:0]
vector tm_ac[8:0]
vector tm_rd[8:0]
vector tm_gd[8:0]
vector tm_bd[8:0]
vector tm_ad[8:0]
vector tf_r[8:0]
vector tf_g[8:0]
vector tf_b[8:0]
vector tf_a[8:0]
vector tf_lod_frac[8:0]
####################################
# assign static inputs
####################################
####################################
# list signals to be dumped in trace file
####################################
# none
####################################
# 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