do_sim 1.89 KB
#!/bin/csh -f
#
#  Shell script for generating tabular trace file 
#
#  Usage: do_sim <test>
#
#  12/8/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]mi

####################################
# 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 sys_ad_in_h[31:0]     
vector sys_cmd_in_h[4:0]    
vector cbus_select[1:0]    
vector cbus_command[2:0]  
vector version[31:0]     
vector sys_ad_out_h[31:0]     
vector sys_cmd_out_h[4:0]    
vector cbus_data[31:0]      
vector dbus_data[63:0]     
vector ebus_data[7:0]     
equiv cbus_write_enable cbus_data_oe
equiv dbus_write_enable dbus_data_oe
equiv dbus_write_enable ebus_data_oe

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

####################################
# list signals to be dumped in trace file
####################################
#watch clock
#watch sys_ad_in_h
#watch sys_ad_out_h

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