dovi_pipe_sim 2.01 KB
#!/bin/csh -f
#
#  Shell script for generating tabular trace file 
#
#  Usage: do_sim <test>
#
#  11/18/94  kluster
#  based on
#  11/9/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]vi_pipe

####################################
# 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 rand[5:0]
vector hfrac[4:0]
vector vfrac[4:0]
vector rgb0i[7:0]
vector rgb1i[7:0]
vector rgb2i[7:0]
vector rgb3i[7:0]
vector cvg0i[2:0]
vector cvg1i[2:0]
vector cvg2i[2:0]
vector cvg3i[2:0]
vector srgb[6:0]

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

inputs l divot_enable
inputs l gamma_enable
inputs l gamma_dither_enable
inputs l rand[5:0]
inputs l hfrac[4:0]
inputs l vfrac[4:0]
inputs l rgb0i[7:0]
inputs l rgb1i[7:0]
inputs l rgb2i[7:0]
inputs l rgb3i[7:0]
inputs l cvg0i[2:0]
inputs l cvg1i[2:0]
inputs l cvg2i[2:0]
inputs l cvg3i[2:0]
inputs l synci;

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