diff options
-rw-r--r-- | icefuzz/icecube.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/icefuzz/icecube.sh b/icefuzz/icecube.sh index 11e5408..dc1d281 100644 --- a/icefuzz/icecube.sh +++ b/icefuzz/icecube.sh @@ -10,7 +10,7 @@ # - <project_name>.pcf ## physical constraint file # # Running iCEcube2: -# - bash icecuberun.sh <project_name> ## creates <project_name>.bin +# - bash icecube.sh [-1k|-8k] <project_name> ## creates <project_name>.bin # # # @@ -31,6 +31,16 @@ scriptdir=${BASH_SOURCE%/*} if [ -z "$scriptdir" ]; then scriptdir="."; fi +if [ "$1" == "-1k" ]; then + ICEDEV=hx1k-tq144 + shift +fi + +if [ "$1" == "-8k" ]; then + ICEDEV=hx8k-ct256 + shift +fi + set -ex set -- ${1%.v} icecubedir="${ICECUBEDIR:-/opt/lscc/iCEcube2.2015.08}" |