do_sim 2.71 KB
#!/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]ew

####################################
# 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 cs_ew_d[63:0]
vector dxr[22:0] 
vector dxg[22:0] 
vector dxb[22:0] 
vector dxa[22:0] 
vector dxz[22:0] 
vector dxs[22:0] 
vector dxt[22:0] 
vector dxw[22:0] 
vector dxl[22:0] 
vector dyr[22:0] 
vector dyg[22:0] 
vector dyb[22:0] 
vector dya[22:0] 
vector dyz[22:0] 
vector dys[22:0] 
vector dyt[22:0] 
vector dyw[22:0] 
vector dyl[22:0]

vector width_cimage[9:0] 
vector width_timage[9:0]
vector pixel_size[1:0] 
vector texel_size[1:0] 
vector cycle_type[1:0]
vector scbox_xmax[11:0] 
vector scbox_xmin[11:0] 
vector scbox_ymax[11:0] 
vector scbox_ymin[11:0]

vector ew_cv_d[12:0]
vector ew_cv_start_x[11:0] 
vector ew_ms_length[11:0]
vector ew_ep_d[21:0]
vector ew_ms_addr[19:0]

####################################
# assign static inputs
####################################

####################################
# list signals to be dumped in trace file
####################################
watch cs_ew_d
watch cs_ew_newprim
watch dxr dxg dxb dxa dxz dxs dxt dxw dxl dyr dyg dyb dya dyz dys dyt dyw dyl
watch left_xmajor left_xminor left_offset
watch sign_dxhdy_xmajor sign_dxhdy_offset
watch width_cimage width_timage
watch load_cmd_image
watch pixel_size texel_size cycle_type
watch scbox_xmax scbox_xmin scbox_ymax scbox_ymin
watch load_cmd_scissor load_cmd_ewstall load_cmd_offset
watch load_cmd_tlut
watch sc_field odd_line flush
watch reset_l gclk
watch ew_cs_busy
watch ew_cv_d
watch ew_cv_newspan
watch ew_cv_start_x ew_ms_length
watch ew_ep_d
watch ew_ep_startspan
watch ew_ms_addr


####################################
# 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