summaryrefslogtreecommitdiff
path: root/bin/floall.sh
diff options
context:
space:
mode:
authorJim Lawson2015-05-12 15:19:55 -0700
committerJim Lawson2015-07-24 15:50:53 -0700
commite74cce036a7e9f8a08a020f1e007b22098db890d (patch)
treef15f841da5deb4ba6cbbad581ae7db35a809d461 /bin/floall.sh
parent2ae50411cbc5e2cd5fdc9ca4069b9c5f64919bc4 (diff)
Use CHISEL_BIN, CX, generalize generated/targetDir, convert filter to python, cd into targetDir before launching simulator (via Driver).
Diffstat (limited to 'bin/floall.sh')
-rwxr-xr-xbin/floall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/floall.sh b/bin/floall.sh
index 872b78a5..31dca1e2 100755
--- a/bin/floall.sh
+++ b/bin/floall.sh
@@ -2,5 +2,5 @@
shift 1
for file in "$@"; do
echo -n $file "-> "
- (cd generated; ../chisel3/bin/fir2flo.sh $file > $file.out; grep "res = " $file.out)
+ (cd generated; $CHISEL_BIN/fir2flo.sh $file > $file.out; grep "res = " $file.out)
done