do_sim 2.41 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 fsim
set sim transistor 0.1
set switch [swt]rac

mode compassqsim
load [nls]ri_rac

####################################
# setup environment
####################################
radix 16
options bidirConflict
options failTestOnZ
# trace (static, tabular)
options tabularReportOnChange
trace (dynamic, tabular)

####################################
# rambus pullup resistors
####################################
transistor P vss bus_enable_rac_o vdd
transistor P vss bus_ctrl_rac_o vdd
transistor P vss bus_data_rac_o[8] vdd
transistor P vss bus_data_rac_o[7] vdd
transistor P vss bus_data_rac_o[6] vdd
transistor P vss bus_data_rac_o[5] vdd
transistor P vss bus_data_rac_o[4] vdd
transistor P vss bus_data_rac_o[3] vdd
transistor P vss bus_data_rac_o[2] vdd
transistor P vss bus_data_rac_o[1] vdd
transistor P vss bus_data_rac_o[0] vdd

####################################
# display current environment
####################################
preprocess
simparms
options
trace
modeloptions

####################################
# bus and signal aliases
####################################
vector cbus_command[2:0]
vector tst_c_ctl_i[5:0]
vector c_ctl_i[5:0]
vector cbus_data[31:0]
vector dbus_data[63:0]
vector ebus_data[7:0]
vector bus_data_rac_o[8:0]
equiv ri_cbus_write_enable cbus_data_oe
equiv ri_0.ri_dbus_write_enable dbus_data_oe
equiv ri_0.ri_ebus_write_enable ebus_data_oe

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

####################################
# list signals to be dumped in trace file
####################################
watch tx_clk
watch syn_clk
watch dbus_data
watch cbus_data_oe
watch dbus_data_oe
watch ebus_data_oe

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