#! /bin/tcsh -f
############################################################
## Copyright: 2010 Integrated Sytems Laboratory, ETH Zurich
## http://www.iis.ee.ethz.ch/~sha3
############################################################
# Example script for compiling RTL sourcecode
set VER=6.5a
set LIB=gate
if (-e $LIB) then
rm -rf $LIB
endif
vlib-${VER} $LIB
# compile sourcecode
vlog-${VER} -work $LIB ../encounter/out/echo.v
# testbench (note no -check_synthesis)
vcom-${VER} -work $LIB ../sourcecode/simulstuff.vhd
vcom-${VER} -work $LIB ../sourcecode/echoTbPkg.vhd
vcom-${VER} -work $LIB ../sourcecode/echoTb.vhd