Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / bin / gcat
CommitLineData
86530b38
AT
1#! /bin/sh
2
3OS=`uname -s`
4if [ $OS = "SunOS" ] ; then
5exe=$DV_ROOT/tools/SunOS/sparc/gcat
6fi
7if [ $OS = "Linux" ]; then
8exe=$DV_ROOT/tools/Linux/x86_64/gcat
9fi
10 if [ -x $exe ]; then
11 exec $exe "$@"
12 else
13 die "executable $exe not found!"
14 fi
15
16