From aa9da46807af24d906af371ba9c4ee9b7430f82c Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Wed, 5 Feb 2014 01:55:39 +0100 Subject: Removed old unused files from tests/ --- tests/tools/rtlview.sh | 63 -------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100755 tests/tools/rtlview.sh (limited to 'tests/tools') diff --git a/tests/tools/rtlview.sh b/tests/tools/rtlview.sh deleted file mode 100755 index 61fef802e..000000000 --- a/tests/tools/rtlview.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/bash - -# using Xilinx ISE to display RTL schematics - -if [ ! -f "$1" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -prjdir="$(dirname $0)/rtlview.tmp" -mkdir -p "$prjdir" - -cp "$1" "$prjdir"/schematic.v -cp "$(dirname $0)"/../../techlibs/common/blackbox.v "$prjdir"/blackbox.v -cd "$prjdir" - -if fuser -s ise.out; then - echo "ISE already running. Re-create RTL schematic from GUI." - exit 1 -fi - -xilver=$( ls -v /opt/Xilinx/ | grep '^[0-9]' | tail -n1; ) - -cat > rtlview.xise << EOT - - -
- - - - - - - - - - - - - - - - - - - - - - - -EOT - -set -- -case "$( uname -m )" in -x86_64) - . /opt/Xilinx/$xilver/ISE_DS/settings64.sh ;; -*) - . /opt/Xilinx/$xilver/ISE_DS/settings32.sh ;; -esac - -ise rtlview.xise > ise.out 2>&1 & -echo "ISE is now starting up. Create RTL schematic from GUI." - -- cgit v1.2.3