do_sim 2.13 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]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