#! /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_slow

if (-e $LIB) then
  rm -rf $LIB 
endif

vlib-${VER} $LIB

# compile sourcecode
    vlog-${VER}  -work $LIB  ../encounter/out/echo_slow.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


Generated on Fri Sep 24 10:39:12 CEST 2010
Home